/* ================================
   🌍 Global Resets & Page Backgrounds
   ================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Schibsted Grotesk', sans-serif;
}

body {
  background-image: url('staff-login/assets/backgrounds/default.jpg');
  background-size: cover;
}

.about-page .main,
.home-page .main {
  background: url('images/bgs/(79).jpg') no-repeat center center / cover;
  background-attachment: fixed;
}

/* ================================
   🧭 Header & Navigation
   ================================ */

.eus-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px 28px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.eus-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 30vw;
}

.eus-logo-img {
  max-width: 100%;
  height: auto;
}

.eus-nav-list {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  gap: 20px;
  font-weight: 600;
  padding-right: 1rem;
}

.eus-nav-item a {
  text-decoration: none;
  color: #000;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}

.eus-nav-item a:hover {
  background-color: rgba(0,44,95,0.1);
  transform: scale(1.05);
  color: #002c5f;
}

.eus-active a {
  background-color: #002c5f;
  color: #fff;
  border-radius: 6px;
}

.eus-time-display {
  display: flex;
  align-items: center;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #002859;
  padding: 0.5rem 1rem;
  gap: 0.25rem; /* Reduced from 0.5rem */
}

.eus-time-display span {
  display: inline-block;
}

.eus-time-suffix {
  margin-left: 0.25rem;
  font-weight: 700;
}

.eus-time-separator {
  margin: 0 0.25rem; /* Reduced from 0.5rem */
  font-weight: 400;
  opacity: 0.6;
}
/* Hide time display on screens narrower than 600px */
@media screen and (max-width: 600px) {
  .eus-time-display {
    display: none;
  }
}

/* ================================
   📱 Mobile Navigation
   ================================ */

@media screen and (max-width: 768px) {
  .eus-header-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .eus-nav-list {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 12px;
  }

  .eus-nav-item a {
    display: block;
    width: 100%;
    text-align: left;
  }
}
/* ================================
   📦 Main Content & Typography
   ================================ */

.main {
  min-height: 100vh;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  font-size: 3rem;
  color: #002c5f;
}

.content p {
  font-size: 1.2rem;
  margin-top: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}
/* ================================
   🎯 Buttons & Interactions
   ================================ */

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.eusvdashboard-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #004080;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.eusvdashboard-button:hover {
  background-color: #0059b3;
}

.eusvdashboard-button.logout {
  background-color: #333;
}

.eusvdashboard-button.logout:hover {
  background-color: #555;
}

.eusvdashboard-button.reject {
  background-color: #c62828;
}

.eusvdashboard-button.reject:hover {
  background-color: #e53935;
}
/* ================================
   🧾 About Page & Content Blocks
   ================================ */
.eusvaboutusnew-container {
  background: linear-gradient(to bottom right, rgba(0, 44, 95, 0.05), rgba(0, 44, 95, 0.12)), rgba(217, 217, 217, 0.80);
  padding: 2rem;
  border-radius: 12px;
  max-width: 1600px;
  margin: 2rem auto 4rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Nunito', sans-serif;
  color: #002859;
  text-align: left; /* ✅ All content left-aligned by default */
}
.eusvaboutusnew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 0 1rem;
}
.eusvaboutusnew-card {
  background: #002859;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  text-align: center;
}
.about-content {
  max-width: 900px;
  margin: 100px auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.eusvaboutusnew-container h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center; /* ✅ Title remains centered */
}

.EUSvAboutpage {
  background: linear-gradient(to bottom right, rgba(0, 44, 95, 0.05), rgba(0, 44, 95, 0.12)), rgba(217, 217, 217, 0.80);
  padding: 2rem;
  border-radius: 12px;
  max-width: 1600px;
  margin: 2rem auto 4rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Nunito', sans-serif;
  color: #002859;
  text-align: center;
}

.EUSvAboutpage h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.EUSvAboutpage p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.eusvaboutusnew-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.eusvaboutusnew-feature-list li {
  background: #002859;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}
/* ================================
   🖼️ Gallery & Lightbox
   ================================ */

.gallery-section {
  width: 80%;
  max-width: 1500px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  background: rgba(217, 217, 217, 0.80);
  border-radius: 12px;
  color: #002859;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.gallery-section h2 {
  font-size: 3rem;
  color: #002859;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  justify-content: center;
  padding: 20px 0;
}

.gallery-item img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox Overlay */

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay img {
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}
/* ================================
   👥 Team Profiles
   ================================ */
 .eusvnewinstaff-wrapper-container {
  max-width: 1600px;
  margin: 2rem auto 4rem
}

.eusvnewinstaff-section {
  margin-bottom: 80px;
  padding-top: 20px;
}
.eusv-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 50px;
  justify-items: center;
}

.eusvnewinstaff-dept-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(to right, #002c5f, #004080);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 44, 95, 0.3);
}
.base-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.base-card {
  background: rgba(0, 44, 95, 0.65);
  color: #ffffff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 18px rgba(0, 44, 95, 0.1);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.base-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 44, 95, 0.25);
}

.eusvnewinstaff-role {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.eusvnewinstaff-about {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  max-height: 6.5em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.75rem;
  width: 100%;
}

.eusvnewinstaff-about.expanded {
  max-height: 1000px;
}

.eusvnewinstaff-toggle {
  background: none;
  border: none;
  color: #66aaff;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  text-decoration: underline;
}

.eusvnewinstaff-email {
  display: inline-block;
  background-color: #004080;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
  margin-bottom: 1rem;
}

.eusvnewinstaff-email:hover {
  background-color: #0059b3;
}

.eusvnewinstaff-photo-compact {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #004080;
}

.eusvnewinstaff-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.eusv-profile-card {
  background: rgba(0, 44, 95, 0.45);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 44, 95, 0.08);
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.eusv-profile-card:hover {
  box-shadow: 0 8px 30px rgba(0, 44, 95, 0.18);
  transform: translateY(-6px) scale(1.02);
}

.eusv-role-dev {
  background: rgba(0, 44, 95, 0.45);
}

.eusv-profile-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #002c5f;
  object-fit: cover;
  background: #fff;
  margin-bottom: 16px;
}

.eusv-profile-card h2 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.eusv-profile-card h3 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 12px;
}

.eusv-email-link {
  background-color: #003366;
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  word-break: break-word;
}

.eusv-email-link:hover {
  background-color: #0055aa;
}
/* ================================
   📊 Homepage Stats & VATSIM
   ================================ */

.euvs-dashboard-wrapper {
  padding: 60px 20px;
  max-width: 1600px;
  margin: 0 auto;
}

.euvs-statistics-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.euvs-stat-card {
  background: rgba(0, 44, 95, 0.80);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 44, 95, 0.1);
  transition: transform 0.2s ease;
}

.euvs-stat-card:hover {
  transform: scale(1.03);
}

.euvs-stat-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.euvs-stat-card p {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  font-weight: bold;
}

.euvs-flights-section {
  margin-top: 60px;
}

.euvs-flight-title {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}

.euvs-flight-status {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.euvs-flight-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 44, 95, 0.80);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 44, 95, 0.1);
}

.euvs-flight-card:hover {
  background-color: rgba(0, 44, 95, 0.8);
  transform: scale(1.03);
}

.euvs-aircraft-icon {
  width: 24px;
  height: 24px;
}
.live-connection-title {
  display: inline-block;              /* Only as wide as content */
  background: rgba(0, 44, 95, 0.65);  /* Blue background */
  color: #ffffff;                     /* White text */
  font-size: 1.2rem;
  padding: 8px 16px;                  /* Neat vertical & horizontal spacing */
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 44, 95, 0.1);
  margin-bottom: 30px;
  white-space: nowrap;               /* Prevent wrapping */
}
/* 🎥 Promo Video Container */
.euvs-video-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #000;
  display: none; /* Uncomment when video is ready */
}
.euvs-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================
   📮 Contact Form
   ================================ */

.v2eusvcontactform-wrapper {
  background: linear-gradient(to bottom right, rgba(0, 44, 95, 0.05), rgba(0, 44, 95, 0.12)), rgba(217, 217, 217, 0.80);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  width: 90%;
  max-width: 1200px;
  margin: 3rem auto;
  box-shadow: 0 8px 24px rgba(0, 44, 95, 0.2);
  font-family: 'Nunito', sans-serif;
  color: #002859;
  animation: fadeIn 0.6s ease-in-out;
}

.v2eusvcontactform-wrapper h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  text-align: center;
  color: #002859;
  letter-spacing: 0.5px;
}

.v2eusvcontactform-wrapper p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #002859;
}

.v2eusvcontactform-wrapper label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  color: #002859;
}

.v2eusvcontactform-wrapper input,
.v2eusvcontactform-wrapper textarea,
.v2eusvcontactform-wrapper select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #004080;
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  color: #002859;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.v2eusvcontactform-wrapper input:focus,
.v2eusvcontactform-wrapper textarea:focus,
.v2eusvcontactform-wrapper select:focus {
  border-color: #0055aa;
  box-shadow: 0 0 0 3px rgba(0, 85, 170, 0.2);
  outline: none;
}

.v2eusvcontactform-wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23002859' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px 6px;
  appearance: none;
}

.v2eusvcontactform-half {
  width: 100%;
}

@media (min-width: 768px) {
  .v2eusvcontactform-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .v2eusvcontactform-half {
    width: calc(50% - 1rem);
  }

  .v2eusvcontactform-field {
    flex: 1 1 100%;
  }
}

.v2eusvcontactform-actions {
  text-align: center;
  margin-top: 1rem;
}

.v2eusvcontactform-primary {
  background-color: #002859;
  color: #ffffff;
  border: none;
  padding: 0.85rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.v2eusvcontactform-primary:hover {
  background-color: #004080;
  transform: scale(1.04);
}

.v2eusvcontactform-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================================
   🗺️ Map Page
   ================================ */

.EUSVlivemappage {
  background: linear-gradient(to bottom right, rgba(0, 44, 95, 0.05), rgba(0, 44, 95, 0.12)), rgba(217, 217, 217, 0.80);
  padding: 2rem;
  border-radius: 12px;
  width: 80%;
  max-width: 1500px;
  margin: 2rem auto 4rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #002859;
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

.EUSVlivemappage h2 {
  font-size: 3rem;
  color: #002859;
  margin-bottom: 1.5rem;
  text-align: center;
}

.EUSVlivemappage p {
  text-align: left;
  margin-bottom: 1rem;
}

#map {
  height: 600px;
  width: 100%;
  margin: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.EUSVlivemappage table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.EUSVlivemappage th,
.EUSVlivemappage td {
  padding: 8px;
  border: 1px solid #ffffff;
}

.EUSVlivemappage thead {
  background-color: #002859;
  color: white;
}
/* ================================
   🛰️ Live Map Enhancements
   ================================ */

#flightsTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

#flightsTable th,
#flightsTable td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

#flightsTable th {
  background-color: #002859;
  color: #ffffff;
}

#flightsTable tr:hover {
  background-color: #f0f8ff;
}

.highlight-row {
  background-color: #dbe9ff !important;
  font-weight: bold;
}

.plane-icon {
  width: 36px;
  height: 36px;
  transform-origin: center center;
}

.mapboxgl-popup-content {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.mapboxgl-popup-tip {
  display: none !important;
}

.euroscot-popup {
  background-color: rgba(0, 40, 89, 0.8);
  color: #FFFFFF;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: bold;
  position: relative;
  min-width: 180px;
}

.euroscot-popup strong {
  color: #FFFFFF;
  font-weight: bold;
}

.popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.popup-close:hover {
  color: #ffdddd;
}
    .EUSVlivemappage {
      display: flex;
      flex-direction: column;
    }

    #map {
      flex: 1;
      min-height: 60vh;
    }

    #flightsTable {
      width: 100%;
      border-collapse: collapse;
      background-color: #fff;
    }

    #flightsTable th, #flightsTable td {
      padding: 10px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    #flightsTable th {
      background-color: #002859;
      color: #ffffff;
    }

    #flightsTable tr:hover {
      background-color: #f0f8ff;
    }

    .highlight-row {
      background-color: #dbe9ff !important;
      font-weight: bold;
    }

    .plane-icon {
      width: 36px;
      height: 36px;
      transform-origin: center center;
    }

    .mapboxgl-popup-content {
      background: none !important;
      box-shadow: none !important;
      padding: 0 !important;
    }

    .mapboxgl-popup-tip {
      display: none !important;
    }

    .euroscot-popup {
      background-color: rgba(0, 40, 89, 0.8);
      color: #FFFFFF;
      font-size: 13px;
      padding: 10px 12px;
      border-radius: 6px;
      font-weight: bold;
      position: relative;
      min-width: 180px;
    }

    .euroscot-popup strong {
      color: #FFFFFF;
      font-weight: bold;
    }

    .popup-close {
      position: absolute;
      top: 6px;
      right: 8px;
      color: #ffffff;
      font-size: 16px;
      cursor: pointer;
      font-weight: bold;
    }

    .popup-close:hover {
      color: #ffdddd;
    }
/* ================================
   ✈️ Fleet Page
   ================================ */

.EUSvFleetpage {
  background: linear-gradient(to bottom right, rgba(0, 44, 95, 0.05), rgba(0, 44, 95, 0.12)), rgba(217, 217, 217, 0.60);
  padding: 2rem;
  border-radius: 12px;
  max-width: 1600px;
  margin: 2rem auto 4rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Nunito', sans-serif;
  color: #002859;
  text-align: center;
}

.EUSvFleetpage h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.EUSvFleetpage p {
  font-size: 1.1rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.60);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.fleet-card img {
  max-width: 100%;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.fleet-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #002859;
}

.fleet-card p {
  margin: 0.25rem 0;
}

.fleet-card .badge {
  background-color: #002859;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.on-order {
  color: #00aa00;
  font-weight: bold;
}
/* ================================
   🧑‍✈️ Staff Dashboard
   ================================ */

.eusvdashboard-wrapper {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem 2.5rem;
  max-width: 960px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.eusvdashboard-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #002859;
}

.eusvdashboard-subheading {
  margin-top: 3rem;
  font-size: 1.5rem;
  color: #002859;
}

.eusvdashboard-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.eusvdashboard-message {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #004080;
}

.eusvdashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.eusvdashboard-table th,
.eusvdashboard-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.eusvdashboard-table thead tr {
  background-color: #002859;
  color: #fff;
}

.eusvdashboard-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #004080;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.eusvdashboard-button:hover {
  background-color: #0059b3;
}

.eusvdashboard-button.logout {
  background-color: #333;
}

.eusvdashboard-button.logout:hover {
  background-color: #555;
}

.eusvdashboard-button.reject {
  background-color: #c62828;
}

.eusvdashboard-button.reject:hover {
  background-color: #e53935;
}

.eusvdashboard-preview {
  max-width: 150px;
  border-radius: 4px;
}

.eusvdashboard-action-form {
  display: inline-block;
  margin-right: 0.5rem;
}

.eusvdashboard-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  border-radius: 4px;
}

.eusvdashboard-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.eusvdashboard-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #002859;
}

.eusvdashboard-field input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.eusvdashboard-actions {
  text-align: center;
}

.eusvdashboard-field input[type="file"],
.eusvdashboard-field select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#preview-img {
  max-width: 300px;
  border-radius: 8px;
  display: none;
}

.eusvdashboard-form {
  max-width: 500px;
  margin: 0 auto;
}

.eusvdashboard-preview-box {
  text-align: center;
  margin-bottom: 1rem;
}

.eusvdashboard-preview {
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.eusvdashboard-field input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0.5rem;
}
/* ================================
   🧬 EVOM Container
   ================================ */

.eusvevom-container {
  width: 100%;
  max-width: 1600px;
  padding: 2rem;
  margin: 2rem auto 4rem auto;
  border-radius: 12px;
  background: linear-gradient(to bottom right, rgba(0, 44, 95, 0.05), rgba(0, 44, 95, 0.12)), rgba(217, 217, 217, 0.80);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Nunito', sans-serif;
  color: #002859;
  text-align: left;
  box-sizing: border-box;
}

.eusvevom-container h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.eusvevom-container p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.eusvevom-container h4 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #002859;
}

.eusvevom-container details {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #002859;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.eusvevom-container summary {
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  color: #002859;
  margin-bottom: 0.5rem;
}

.eusvevom-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.eusvevom-feature-list li {
  background: #002859;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.eusvevom-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.eusvevom-container th,
.eusvevom-container td {
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.eusvevom-container thead tr {
  background: #002859;
  color: #fff;
}

.eusvevom-container img {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.eusvevom-controls button {
  background: #002859;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.eusvevom-controls button:hover {
  background: #004080;
}

.clean-logo {
  border: none !important;
  box-shadow: none !important;
}
/* ================================
   🧾 Generic Text Pages
   ================================ */

.eusvgenericcontentpage {
  background: linear-gradient(to bottom right, rgba(0, 44, 95, 0.05), rgba(0, 44, 95, 0.12)), rgba(217, 217, 217, 0.80);
  padding: 2rem;
  border-radius: 12px;
  width: 80%;
  max-width: 1500px;
  margin: 2rem auto 4rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #002859;
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

.eusvgenericcontentpage h1,
.eusvgenericcontentpage h2 {
  font-size: 3rem;
  color: #002859;
  margin-bottom: 1.5rem;
  text-align: center;
}
/* ================================
   🧢 Special Liveries
   ================================ */

.eusvaboutusnew-specialliveries {
  margin-top: 3rem;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  font-family: inherit;
  color: inherit;
  text-align: left;
}

.eusvaboutusnew-specialliveries h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #002859;
}

.eusvaboutusnew-specialliveries p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.eusvaboutusnew-liverygrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.eusvaboutusnew-liverycard {
  background: #002859;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
  border: none;
  overflow: hidden;
}

.eusvaboutusnew-liverycard img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #eee;
}

.eusvaboutusnew-liverycard h3 {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin: 0.5rem 0;
}

.eusvaboutusnew-liverycard p {
  font-size: 0.9rem;
  color: #FFFFFF;
  margin: 0 0 1rem;
}

/* Modal for enlarged livery image */

.livery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.livery-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.livery-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
/* ================================
   🧭 Footer & Fixed Logos
   ================================ */

.euvs-footer-section {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 1rem;
  z-index: 9999;
  background-color: transparent;
}

.euvs-fixed-logo-left,
.euvs-fixed-logo-right {
  position: fixed;
  bottom: 1rem;
  display: flex;
  gap: 1rem;
  z-index: 9999;
  background-color: transparent;
}

.euvs-fixed-logo-left {
  left: 1rem;
}

.euvs-fixed-logo-right {
  right: 1rem;
}

.euvs-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 60px;
  padding: 8px 10px;
  background: rgba(0, 44, 95, 0.65);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.euvs-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .euvs-fixed-logo-left,
  .euvs-fixed-logo-right {
    display: none;
  }
}
/* ================================
   🛰️ Radar Beacon Animation
   ================================ */

.euvs-activity-beacon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #00ff00 30%, transparent 40%);
  position: relative;
  margin-right: 8px;
  overflow: hidden;
}

.euvs-activity-beacon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, #00ff00 50%, transparent);
  animation: sweep 1.5s infinite linear;
}
/* COOKIE CHANGES */
@keyframes sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}
.video-placeholder, .recaptcha-placeholder {
  background: #f0f0f0;
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
}

