/* Theme: Elegant — based on Design 5 (Navy & Gold Professional) */
body {
    background-color: #f8f9fa !important;
    color: #2d3748;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Navbar */
.navbar.bg-dark {
    background-color: #0a1628 !important;
}
.navbar.navbar-dark .navbar-brand,
.navbar.navbar-dark .nav-link.active,
.navbar.navbar-dark .nav-link {
    color: #c9a84c !important;
}
.navbar.navbar-dark .nav-link:hover {
    color: #e0c76a !important;
}

/* Container & content */
.container {
    color: #2d3748;
}

/* Headings */
legend, h1, h2, h3, h4, h5, h6 {
    color: #0a1628;
}
legend.border-bottom {
    border-bottom-color: #c9a84c !important;
}

/* Tables */
.table {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.07);
}
.table thead th {
    background-color: #0a1628;
    color: #c9a84c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 0.82rem;
    border: none;
}
.table tbody tr:hover {
    background-color: #f0f3f7;
}
.table tbody td {
    color: #2d3748;
    border-bottom: 1px solid #e8ecf1;
}

/* Cards & content sections */
.content-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 4px solid #0a1628;
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.07);
}

/* Buttons */
.btn-primary {
    background-color: #0a1628;
    border-color: #0a1628;
}
.btn-primary:hover {
    background-color: #162240;
    border-color: #162240;
    transform: translateY(-1px);
}
.btn-outline-info {
    color: #c9a84c;
    border-color: #c9a84c;
}
.btn-outline-info:hover {
    background-color: #c9a84c;
    color: #0a1628;
    border-color: #c9a84c;
}

/* Forms */
.form-control, .form-select {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    color: #2d3748;
    background-color: #fff;
}
.form-control:focus, .form-select:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.2);
}

/* Alerts / messages */
.alert {
    border-radius: 8px;
    border-left: 4px solid #c9a84c;
}

/* Links */
a {
    color: #0a1628;
}
a:hover {
    color: #c9a84c;
}

/* Map containers */
.leaflet-container {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.07);
}

/* Pagination */
.page-link {
    color: #0a1628;
    border-color: #d1d5db;
}
.page-link:hover {
    background-color: #0a1628;
    color: #c9a84c;
    border-color: #0a1628;
}
.page-item.active .page-link {
    background-color: #c9a84c;
    border-color: #c9a84c;
    color: #0a1628;
}

/* Theme dropdown styling */
.theme-dropdown .dropdown-menu {
    background: #ffffff;
    border: 1px solid #d1d5db;
}
.theme-dropdown .dropdown-item {
    color: #2d3748;
}
.theme-dropdown .dropdown-item:hover {
    background-color: #0a1628;
    color: #c9a84c;
}
.theme-dropdown .dropdown-toggle {
    color: #c9a84c !important;
}
