/*menu
______________________________*/
.tours-menu {
  flex: 1;
  min-width: 250px;
  background-color: #f8f9fa;
  padding: 0.5rem;
  border-radius: 8px;
  border-left: 5px solid #007b5e;
  top: 20px;
  align-self: flex-start;
}

.tours-menu ul {
  list-style: none;
  padding: 0;
}

.tours-menu a {
  color: #007b5e;
  font-size: 1.1em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
  padding: 0.5rem;
  border-radius: 4px;
}

.tours-menu a:hover {
  color: #007b5e;
  background-color: #e9f5f2;
}

.artical2 {
  background-color: #f8f9fa;
}

.content img,
.content1 img,
.content2 img,
.content3 img {
  max-width: 100%;
  width: 60%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tour-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.tour-links a {
  display: block;
  background-color: #e9f5f2;
  padding: 1rem;
  border-radius: 8px;
  color: #007b5e;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, transform 0.2s;
  position: relative;
  padding-right: 2rem;
}

.tour-links a::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #007b5e;
  font-size: 1.2rem;
}

.tour-links a:hover {
  background-color: #d3eee5;
  transform: translateY(-2px);
}

.half-width-divider {
  width: 50%;
  height: 2px;
  background-color: #ddd;
}

.back-to-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

.divers-logbook {
  background-color: #007b5e;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.hidden-logbook {
  visibility: hidden;
  /* Прячем кнопку, но сохраняем в DOM */
}

.important-info {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  border-left: 5px solid #007b5e;
  padding-left: 5px;
}