@font-face {
  font-family: "briem_hand_bold";
  src: url(./fonts/briem_hand/fonts/otf/BriemHand-Bold.otf);
  font-family: "briem_hand_m";
  src: url("./fonts/briem_hand/fonts/otf/BriemHand-Medium.otf");
  font-family: "Bellota-Text";
  src: url(./fonts/Bellota-Text/BellotaText-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

.container {
  width: 95%;
  max-width: 1200%;
  margin-left: 2%;
  margin-right: 2%;
}

/* Шапка сайта */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 20px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #303f69;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-family: "briem_hand_bold";
}

.logo i {
  margin-right: 10px;
  font-size: 32px;
}

.nav-li {
  display: flex;
  gap: 30px;
  margin-right: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 20px;
  padding: 0;
}
.nav-menu li {
  font-family: "Bellota-Text";
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-family: "Bellota-Text";
}

.nav-menu a:hover {
  color: #303f69;
}

.btn-login {
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #303f69;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-login:hover {
  background-color: #1a2239;
}

/* Герой блок */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./img/main_fon_img.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "briem_hand_bold";
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: "Bellota-Text";
}

.btn-primary {
  background-color: #303f6969;
  color: white;
  border: 2%;
  border-color: #f9f9f9bb;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background-color: #303f69;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary i {
  margin-right: 10px;
}

/* О приложении блок */
.about-app {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  padding-right: 50px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #303f69;
  font-family: "briem_hand_bold";
}

.about-text h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-family: "Bellota-Text";
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  font-family: "Bellota-Text";
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Возможности блок */
.features {
  padding: 100px 0;
  background-color: white;
}

.feature-item img {
  width: 35%;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #303f69;
  font-family: "briem_hand_bold";
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #44076c;
  font-family: "briem_hand_m";
}

.feature-item p {
  color: #666;
  font-size: 16px;
  font-family: "Bellota-Text";
}

/* Футер */
footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-about {
  flex: 1;
  min-width: 300px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 20px;
  font-family: "Bellota-Text";
}

.footer-links {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-links h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #ddd;
}

.footer-links ul {
  list-style: none;
  font-family: "Bellota-Text";
}

.footer-links li {
  margin-bottom: 12px;
  font-family: "Bellota-Text";
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #303f69;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  font-family: "Bellota-Text";
}

.footer-contact h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #ddd;
}

.footer-contact p {
  margin-bottom: 15px;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.mobile-menu-btn i {
  display: none;
}

/* Базовая стилизация кнопки-бургера */
.mobile-menu-btn {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  background: linear-gradient(#333, #333) no-repeat center / 100% 3px;
}

.mobile-menu-btn::before,
.mobile-menu-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  left: 0;
  transition:
    transform 0.3s,
    top 0.3s,
    bottom 0.3s;
}

.mobile-menu-btn::before {
  top: 0;
}

.mobile-menu-btn::after {
  bottom: 0;
}

.header-content:has(.nav-menu.mobile-open) .mobile-menu-btn {
  background: transparent;
}

.header-content:has(.nav-menu.mobile-open) .mobile-menu-btn::before {
  transform: rotate(45deg);
  top: 8px;
}

.header-content:has(.nav-menu.mobile-open) .mobile-menu-btn::after {
  transform: rotate(-45deg);
  bottom: 8px;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: block;
    z-index: 2000;
  }
  .nav-menu {
    display: none;
  }

  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 10vh;
    right: 0;
    width: 30vw;
    height: 30vh;
    background-color: #303f69;
    z-index: 1500;
    padding: 80px 20px 20px;
    margin-right: 3%;
    border-radius: 10px;
    box-shadow: none;
    margin-top: 5%;
    border: 1px solid #2b385c;
  }

  .nav-menu.mobile-open .nav-li {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
  }

  .nav-menu.mobile-open li {
    margin: 20px 0;
    width: auto;
  }

  .nav-menu.mobile-open a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 3%;
    font-family: "Bellota-Text", sans-serif;
  }

  .nav-menu.mobile-open .btn-login {
    background-color: #ffffff;
    color: #303f69;
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
    min-width: 200px;
    transition: background-color 0.3s;
    border: 1px solid #9f9f9f;
  }

  .nav-menu.mobile-open .btn-login:hover {
    background-color: #f0f0f0;
  }

  .nav-menu.mobile-open .btn-login a {
    color: #303f69;
    font-size: 16px;
    text-decoration: none;
  }

  .header-content {
    position: relative;
    z-index: 2000;
    background-color: #f9f9f9;
  }

  /* Адаптация about-content */
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    padding-right: 0;
  }
  .about-image img {
    width: 80%;
    margin: 0 auto;
  }

  /* Адаптация hero */
  .hero {
    min-height: 600px;
    height: auto;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
  .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
  }

  /* Адаптация dashboard (layout) */
  .layout {
    display: flex;
    margin-top: 10%;
    height: 100vh;
  }
  .sidebar {
    width: 100%;
    margin: 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
    height: auto;
    padding: 15px;
    margin-top: 10%;
  }
  .content-3 {
    padding: 20px;
  }
  .routes {
    justify-content: center;
  }
  .route-card {
    width: calc(50% - 20px);
    margin-top: 3%;
  }
  .admin-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .empty-groups-img {
    max-width: 60vw;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .about-text h2,
  .section-title {
    font-size: 28px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .route-card {
    width: 100%;
  }
  .admin-routes-grid {
    grid-template-columns: 1fr;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .profile-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .modal-body-split {
    flex-direction: column;
  }
  .guide-form-panel,
  .photos-panel {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .photos-panel {
    border-bottom: none;
  }
  .full-screen-modal {
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .registration-form {
    padding: 25px 20px;
    margin: 10px;
  }
  .form-header h1 {
    font-size: 24px;
  }
  .form-input {
    padding: 12px 14px;
  }
  .logo {
    font-size: 22px;
  }
  .logo i {
    font-size: 26px;
  }
  .btn-login {
    padding: 8px 16px;
  }
  .hero {
    min-height: 500px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }
  .about-text h2 {
    font-size: 24px;
  }
  .feature-item h3 {
    font-size: 20px;
  }
  .empty-groups-img {
    max-width: 80vw;
  }
  .nav-menu.mobile-open {
    width: 100vw;
    height: 100vh;
    top: 0;
    padding: 100px 20px 20px;
  }
  .nav-menu.mobile-open a {
    font-size: 20px;
  }
}

/* Остальные стили из оригинального файла (hero-2, cards, pagination, формы и т.д.) остаются без изменений */
.hero-2 {
  background: #9eb1c7;
  text-align: center;
  padding: 50px 20px;
  color: #2c3e50;
}

.hero-2 h1 {
  margin-top: 10%;
  font-family: "briem_hand_m";
  font-size: 3em;
  margin-bottom: 3%;
}

.hero-2 p {
  color: #f1f1f1;
  font-family: "Bellota-Text";
}

.search {
  margin-top: 20px;
  width: 400px;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

/* Карточки */
.cards {
  margin-top: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.desc {
  color: #777;
}

.images {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.img {
  background: #ddd;
  border-radius: 8px;
}

.img.big {
  width: 60%;
  height: 300px;
}

.img.small {
  width: 20%;
  height: 300px;
}

.info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn {
  background: #6b8fb3;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* Номера */
.pagination {
  text-align: center;
  margin: 30px 0;
}

.page {
  padding: 8px 12px;
  margin: 0 4px;
  border: none;
  border-radius: 6px;
}

.page.active {
  background: #d0d6dc;
}

/* Форма */
#app {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.container-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/reg_fon_img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.registration-form {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h1 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 8px;
  font-family: "briem_hand_bold";
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group select {
  background-color: #ffffff;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
  font-family: "Bellota-Text";
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e6ed;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
  background-color: #f8f9fa;
}

.form-input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  background-color: white;
}

.form-input.error {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
  pointer-events: none;
}

select.form-input {
  appearance: none;
  cursor: pointer;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #7f8c8d;
  cursor: pointer;
  font-size: 18px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: #303f69;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
}
.submit-btn span {
  display: flex;
}
.submit-btn span i {
  margin-left: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.submit-btn:hover {
  background-color: #1a2239;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  border: 1px solid #c3e6cb;
  animation: fadeIn 0.5s ease-out;
}

.reg-a {
  text-align: center;
}

.reg-a a {
  text-decoration: none;
  color: #000000;
}

.btn-primary a {
  text-decoration: none;
  color: #ffffff;
}

.btn-login a {
  text-decoration: none;
  color: #ffffff;
}

.submit-btn a {
  text-decoration: none;
  color: #ffffff;
}

.layout {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  margin-top: 8%;
  margin-left: 2%;
  background: #f7f8fa;
  padding: 20px;
  border-right: 1px solid #ddd;
  border-radius: 5px;
  height: 80%;
}

.profile {
  text-align: center;
  margin-bottom: 30px;
}

.avatar {
  width: 70px;
  height: 70px;
  background: #e6cfc4;
  border-radius: 12px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.name {
  font-weight: bold;
}

.role {
  font-size: 14px;
  color: #777;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item {
  background: none;
  border: none;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
}

.menu-item.active {
  background: #dce2ea;
}

/* Content */
.content-3 {
  flex: 1;
  padding: 20px 40px;
}

/* Topbar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.topbar h1 {
  font-size: 22px;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-menu a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.profile-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: #5b7db1;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* Routes */
.routesh2 {
  margin-top: 10%;
  color: #303f69;
  font-family: "briem_hand_bold";
}

.routes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: -20px;
}

.route-card {
  width: calc(33.33% - 20px);
  box-sizing: border-box;
  min-width: 250px;
  margin-top: 5%;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.width_trek {
  width: 100%;
}

.route-card .title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.map-placeholder {
  height: 120px;
  background: #e5e5e5;
  border-radius: 8px;
  margin-bottom: 10px;
}

.info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

.open-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #5b7db1;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.pagination button.active {
  background-color: #5b7db1;
  color: white;
  border-color: #5b7db1;
  font-weight: bold;
}

.pagination button {
  cursor: pointer;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  transition: all 0.3s ease;
}

.pagination button:hover:not(.active) {
  background-color: #f0f0f0;
}

.date-picker {
  border: none;
  margin-left: 0.5vw;
}

.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: gray;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.delete-btn:hover {
  color: red;
}

.empty-groups-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
}

.empty-groups-img {
  width: 100%;
  max-width: 30vw;
  height: auto;
  margin-bottom: 20px;
}

.empty-groups-text {
  font-family: "Bellota-Text";
  font-size: 18px;
  color: #303f69;
  max-width: 500px;
  line-height: 1.5;
}

.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.social-btn {
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-btn:hover {
  transform: scale(1.1);
}

.vk-btn {
  background-color: #0077ff;
  color: white;
}

.tg-btn {
  background-color: #24a1de;
  color: white;
}

.user-data-form-container {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
}

.profile-form .form-group {
  margin-bottom: 15px;
}

.profile-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.profile-form input,
.profile-form select,
.profile-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.profile-form .form-row {
  display: flex;
  gap: 15px;
}

.profile-form .form-row .form-group {
  flex: 1;
}

.btn-save {
  background-color: #303f69;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: background 0.3s;
}

.btn-save:hover {
  background-color: #1a2239;
}

.admin-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.publish-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
}

.publish-btn:hover {
  background-color: #218838;
}

.admin-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.info-btn {
  background-color: #17a2b8;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  flex: 1;
}

.publish-btn {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  transition: 0.3s;
}

.publish-btn:hover {
  background-color: #219150;
}

.status-badge {
  display: block;
  margin-top: 10px;
  color: #f39c12;
  font-weight: bold;
  text-align: center;
}

.record-switch {
  transition: all 0.2s;
  border-radius: 30px;
  background-color: #ffffff;
}

.record-switch:hover {
  background-color: #ffffff;
}

.record-item input[type="text"] {
  min-width: 200px;
}

.record-item select {
  min-width: 200px;
}

.social-btn {
  display: inline-block;
  margin-right: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: opacity 0.3s;
}
.route-actions {
  display: flex;
  justify-content: space-around;
}
.social-btn:hover {
  opacity: 0.8;
}

.no-link {
  color: #999;
  font-size: 0.9em;
  margin-right: 10px;
}

.full-screen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}
.modal-header h2 {
  text-align: center;
}
.modal-border {
  border: #666 solid 1px;
  border-radius: 30px;
  margin-left: 5%;
  margin-right: 5%;
  height: 50%;
  margin-top: 2%;
}
.modal-body-split {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.close-btn {
  position: absolute;
  margin-left: 5%;
  border: none;
  background-color: #f8f9fa;
  margin-bottom: 10%;
}
.guide-form-panel,
.photos-panel {
  padding: 40px;
  overflow-y: auto;
  height: 100%;
}

.guide-form-panel {
  width: 45%;
  border-right: 1px solid #eee;
  background: #fcfcfc;
}

.photos-panel {
  width: 55%;
}

.admin-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.admin-photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.highlight-box {
  background: #e8f5e9;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.cost-input {
  font-weight: bold;
  color: #2e7d32;
  font-size: 1.2em !important;
}

.reject-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.reject-modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.reject-textarea {
  width: 100%;
  height: 100px;
  margin: 10px 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}
.btn-reject-confirm {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}
.btn-rejected-status {
  background-color: #dc3545 !important;
  color: white !important;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  display: block;
  text-align: center;
}
.warning-text {
  margin-top: 15px;
  padding: 10px;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  font-size: 0.9em;
  border: 1px solid #ffeeba;
}
.status-badge.published {
  background: #d4edda;
  color: #155724;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9em;
}
.mobile-menu {
  position: absolute;
  margin-left: 85%;
}
