html, body {
    background-color: #222325;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navBar {
    background-color: #191A1C;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

/* Left + Right take equal space */
.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

/* Center stays perfectly centered */
.nav-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

#BTImage {
    height: 60px;
}

/* ================= NAV LINKS ================= */

.navList {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navItem {
    font-size: 18px;
    color: white;
}

.navItem a {
    text-decoration: none;
    color: inherit;
}

.navItem a.active {
    color: #3d5afe;
}

/* ================= USER DROPDOWN ================= */

.userOptions {
    display: flex;
    align-items: center;
    background-color: #191A1C;
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
}

.dropdownOption {
    height: 40px;
    min-width: 200px;
    background-color: #191A1C;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    padding: 0 !important;
}

.dropdown-menu .dropdown-item {
    padding-top: 12px;
    padding-bottom: 12px;
}
.dropdownOption a {
    color: white !important;
}

.dropdownOption:hover {
    background-color: #095bcc;
    transform: translateY(-1px);
}

.dropdownText {
    color: white;
}

/* ================= PAGE ================= */

.PageTitle {
    font-size: 45px;
    text-align: center;
    margin: 20px;
    font-weight: bold;
    color: whitesmoke;
}

/* ================= FOOTER ================= */

.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px;
    color: white;
}

.companyName {
    font-weight: bold;
    color: #3d5afe;
}

.support-link {
    text-decoration: none;
    color: white;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .navBar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }

    .navList {
        justify-content: center;
    }

    .PageTitle {
        font-size: 32px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }
}
