/* 🌤 Nav Link Styling */
.nav-link {
  color: #f5f3e7 !important;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #d4af37 !important;
}

/* 🧱 Navbar Background and Contrast */
.elysian-navbar {
  background-color: #1c1c1c !important;
  border-bottom: 1px solid #2a2a2a;
}

/* 🌒 Dark Theme Compatibility (optional) */
[data-bs-theme="dark"] .elysian-navbar {
  background-color: #1c1c1c;
  color: #f5f3e7;
}

/* 🔽 Pilot Avatar Dropdown Menu Styling */
.dropdown-menu {
  background-color: #2a2a2a;
  border: 1px solid #d4af37;
  border-radius: 8px;
  padding: 10px;
}

.dropdown-item {
  color: #f5f3e7;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(to right, #d4af37, #a8892a);
  color: #1c1c1c;
  border-radius: 6px;
}

/* 🌍 Language Selector Dropdown Styling */
.dropdown-menu {
  background-color: #2a2a2a;
  border: 1px solid #d4af37;
  border-radius: 8px;
}

.dropdown-item {
  color: #f5f3e7;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(to right, #a8892a, #d4af37);
  color: #1c1c1c;
}

/* 🌗 Theme Toggler Dropdown Styling */
.dropdown-menu[aria-labelledby="bd-theme-text"] {
  background-color: #2a2a2a;
  border: 1px solid #d4af37;
  border-radius: 8px;
}

/* 📊 Base Card Styling */
.card {
  background-color: #1f1f1f;
  border: 1px solid #d4af37;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  color: #f5f3e7;
}

/* 🧢 Card Header */
.card-header {
  background: linear-gradient(to right, #2a2a2a, #1c1c1c);
  border-bottom: 1px solid #d4af37;
  font-weight: bold;
  text-transform: uppercase;
  color: #d4af37;
}

/* 📦 Card Body */
.card-body {
  padding: 1rem;
  font-size: 0.95rem;
}

/* 🧮 Optional: Stat Value Styling */
.card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
}

.card-body {
  background-color: #1f1f1f;
  border: 1px solid #d4af37;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  color: #f5f3e7;
  margin-bottom: 1rem;
  padding: 1rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 5px;
  padding: 4px 8px;
  box-shadow: 0 0 3px rgba(212, 175, 55, 0.4);
}

/* 🟡 Pending */
.badge.bg-warning {
  background-color: #d4af37 !important;
  color: #1c1c1c !important;
}

/* ✅ Accepted */
.badge.bg-success {
  background-color: #3aaa3a !important;
  color: #f5f3e7 !important;
}

/* ❌ Rejected */
.badge.bg-danger {
  background-color: #c32f2f !important;
  color: #f5f3e7 !important;
}

/* 🔵 Other States */
.badge.bg-info {
  background-color: #2a9fd6 !important;
  color: #f5f3e7 !important;
}
.card-body + .card-body {
  margin-top: 1rem;
  border-top: 1px solid #d4af37;
}
.card {
  background-color: #1f1f1f !important;
  color: #f5f3e7 !important;
  border: 1px solid #d4af37 !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4) !important;
}
.card.bg-primary,
.card.border-primary,
.card.text-white {
  background-color: #1f1f1f !important;
  color: #f5f3e7 !important;
  border-color: #d4af37 !important;
}
.card-body p,
.card-body li,
.card-body span,
.card-body div {
  color: #f5f3e7 !important;
}
.card-body {
  width: 100% !important;
  display: block;
  box-sizing: border-box;
}
.card-body .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.card-body {
  margin: 0 auto;
  max-width: 100%;
}
.card-header {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.card:hover {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  transition: box-shadow 0.3s ease;
}
.card.news-card .card-body {
  color: #f5f3e7;
  background-color: #2a2a2a;
}
.card-body a {
  color: #d4af37 !important; /* Gold hover color */
  font-weight: 600;
  text-decoration: none;
}

.card-body a:hover,
.card-body a:focus {
  color: #f5f3e7 !important; /* Light cream for hover contrast */
  text-decoration: underline;
}
.btn-primary {
  background-color: #d4af37 !important;
  border-color: #a8892a !important;
  color: #1c1c1c !important;
  font-weight: bold;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #f5f3e7 !important;
  color: #1c1c1c !important;
  border-color: #d4af37 !important;
}

.card-body,
.list-group-item {
  background-color: #1f1f1f !important;
  color: #f5f3e7 !important;
  border-color: #d4af37 !important;
}
.list-group-item:hover {
  background-color: #2a2a2a !important;
  color: #d4af37 !important;
  transition: background-color 0.3s ease;
}
.list-group-item {
  background-color: #1f1f1f !important;
  color: #f5f3e7 !important;
  border-color: #d4af37 !important;
}

.list-group-item:hover {
  background-color: #2a2a2a !important;
  color: #d4af37 !important;
}
.card-body {
  background-color: #1f1f1f !important;
  color: #f5f3e7 !important;
}

:root,
[data-bs-theme="light"] {
  --bs-primary: #d4af37 !important;
}
.card .btn-primary,
.list-group-item .btn-primary {
  background-color: #d4af37 !important;
  color: #1c1c1c !important;
  border: 1px solid #a8892a !important;
  font-weight: bold;
}

.list-group-item {
  background-color: #1f1f1f !important;
  color: #f5f3e7 !important;
  border-color: #d4af37 !important;
}

.list-group-item:hover {
  background-color: #2a2a2a !important;
  color: #d4af37 !important;
}

.list-group {
  background-color: #1f1f1f !important;
}
.card .list-group-item {
  background-color: #1f1f1f !important;
  color: #f5f3e7 !important;
  border-color: #d4af37 !important;
}

.card .list-group-item:hover {
  background-color: #2a2a2a !important;
  color: #d4af37 !important;
}
:root,
[data-bs-theme="light"] {
  --bs-primary: #d4af37 !important;
}
.card .list-group-item span,
.card .list-group-item small,
.card .list-group-item div {
  color: #e8e7e7 !important;
}
.card-body p,
.card-body span,
.card-body small,
.card-body div {
  color: #6a6a6a !important;
}
 body {
  background-color: #7f7f7f !important;
}

.list-group-item {
  background-color: inherit !important;
  color: inherit !important;
  border-color: inherit !important;
}

.list-group-item:hover {
  background-color: inherit !important;
  color: inherit !important;
}

.card-body p,
.card-body span,
.card-body small,
.card-body div {
  color: #d0d0d0 !important;
}

footer {
  background-color: #1c1c1c !important;
  color: #d0d0d0 !important;
  padding: 20px;
  border-top: 1px solid #d4af37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

footer a {
  color: #d4af37 !important;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: #f5f3e7 !important;
  text-decoration: underline;
}

footer p,
footer span,
footer div,
footer small,
footer strong,
footer em 
footer .text-body-secondary {
  color: #d0d0d0 !important;
}

footer span[style],
footer div[style],
footer p[style] {
  color: #d0d0d0 !important;
}

.footer-note {
  color: #d0d0d0 !important;
  font-weight: 500;
}

