/* Global Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Navbar Upgrades */
.navbar {
    background-color: #000000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 1050;
    /* Ensure it stays on top */
}

/* Dropdown Fixes */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1051;
    /* Higher than navbar */
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #212529;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* User Dropdown */
.user-avatar-sm {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #495057;
    margin-right: 0.5rem;
}

/* Responsive Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: #f8f9fa;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border-radius: 0.5rem;
}

/* Tables */
.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #6c757d;
}