﻿@media (max-width: 767px) {
    .navbar {
        background-color: #f0f9fa;
        border-bottom: 1px solid #eaeaea;
    }

    .titleSubcell {
        max-width: calc(100% - 240px);
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .nav-item {
        width: 100%;
        justify-content: flex-start;
    }

    .dropdown-toggle-split {
        padding-left: 10px;
    }

    .dropdown-menu {
        border: none;
    }

    .siteNavRoot {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .mainHeader {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.nav-link.active {
    text-decoration: underline !important;
}

.navbar {
    height: 80px;
    background-color: #f0f9fa;
}

.navbarContainer {
    padding: 0px;
    position: relative;
    display: flex;
    background-color: #f0f9fa !important;
}

.mainHeader {
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    height: 80px;
    align-items: baseline;
    position: relative;
    transition: visibility 0.15s 0.167s;
    justify-content: left;
    animation-timing-function: linear;
    animation-duration: 0.15s;
}

.logoCell {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: center;
}

.logoWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    font-weight: 600;
}

.logoImg {
    max-height: 48px;
    max-width: 144px;
    border: none;
    width: auto;
    min-height: 48px;
    min-width: 48px;
}


.titleSubcell {
    white-space: nowrap;
    padding-left: 2px;
    padding-right: 2px;
    flex-shrink: 1;
    flex-grow: 0;
    line-height: 80px;
    display: block;
}

.title {
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    font-weight: 600;
    text-overflow: ellipsis !important;
    overflow: hidden;
    white-space: nowrap;
}

.siteNavRoot {
    min-width: 0px;
    flex-grow: 1;
    flex-shrink: 1;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    background-color: #f0f9fa !important;
    --bs-bg-opacity: 1;
}

.navbar-nav {
    padding: 0 2px;
    display: flex;
    align-items: center;
    background-color: #f0f9fa !important;
}

.nav-link {
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 400;
}

    .nav-link:hover {
        color: rgb(3, 120, 124);
        text-decoration: underline !important;
    }

    .nav-link:active {
        color: rgb(3, 120, 124);
        text-decoration: underline !important;
    }

.dropdown-toggle {
    outline: 0;
}

    .dropdown-toggle:hover {
        background-color: #e8f4f4;
    }

.nav-flush .nav-link {
    border-radius: 0;
}

.dropdown-item {
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 400;
    /*background-color: #f0f9fa !important;*/
}

    .dropdown-item:hover {
        color: rgb(3, 120, 124);
        text-decoration: underline !important;
        background-color: #f0f9fa !important;
    }

.dropdown-menu {
    transition: opacity 0.15s ease-in-out;
    background-color: #f0f9fa !important;
}

.dropdown-toggle-split:hover {
    background-color: #e8f4f4;
}

/* Login Button */
.btn-login-nav {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-login-nav:hover {
    color: #fff;
    background: linear-gradient(135deg, #0097a7 0%, #006064 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.35);
    text-decoration: none;
}

.btn-login-nav:active {
    transform: translateY(0);
}

.btn-login-nav svg {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .btn-login-nav {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        justify-content: center;
        width: fit-content;
    }
}