.provider-sidebar {
    position: fixed;
    top: 0;
    left: 0;

    width: 280px;
    height: 100vh;

    background: linear-gradient(
        180deg,
        #0b2a4f 0%,
        #123d72 100%
    );

    padding: 38px 18px 28px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;
    z-index: 1000;
}

.provider-brand-section {
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 24px;
}

.provider-logo-form {
    margin: 0;
}

.provider-logo-circle {
    width: 122px !important;
    height: 122px !important;

    margin: 0 auto 18px !important;

    border-radius: 50% !important;
    overflow: hidden !important;

    position: relative !important;
    display: block !important;

    padding: 0 !important;

    border: 5px solid rgba(255,255,255,.45) !important;

    background: rgba(255,255,255,.12) !important;

    cursor: pointer !important;

    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.provider-logo-circle img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center !important;

    border-radius: 50% !important;
}

.provider-logo-circle span {
    position: absolute !important;
    inset: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(13,44,84,.82) !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    opacity: 0 !important;

    transition: .25s ease !important;
}

.provider-logo-circle:hover span {
    opacity: 1 !important;
}

.provider-brand-name {
    margin-top: 12px;
    margin-bottom: 8px;

    font-size: 22px;
    font-weight: 700;

    color: #ffffff;

    letter-spacing: -0.5px;
    line-height: 1.1;

    text-align: center;

    text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.provider-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 2px 15px;

    border-radius: 999px;

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow: inset 0 1px 1px rgba(255,255,255,.08);
}

.provider-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.provider-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px 18px;

    border-radius: 16px;

    color: rgba(255,255,255,.95) !important;
    text-decoration: none !important;

    font-size: 16px;
    font-weight: 500;

    transition: .25s ease;
}

.provider-nav-link i {
    width: 24px;

    text-align: center;

    font-size: 20px;
}

.provider-nav-link:hover,
.provider-nav-link.active {
    background: rgba(255,255,255,.18);
}

.provider-nav-link:hover i,
.provider-nav-link.active i {
    color: #ffffff;
}

.provider-nav-logout {
    margin-top: auto;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px 18px;

    border-radius: 16px;

    background: transparent;

    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 16px;
    font-weight: 500;

    transition: .25s ease;
}

.provider-nav-logout i {
    width: 24px;
    text-align: center;
    font-size: 20px;
}

.provider-nav-logout:hover {
    background: rgba(255,255,255,.12);

    color: #ffffff !important;

    transform: translateX(4px);
}

.provider-logo-empty {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.provider-logo-empty::before {
    content: "🖼️";

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 42px;

    color: rgba(255,255,255,.6);
}

.provider-mobile-menu-toggle {
    display: none;
}

.provider-sidebar-overlay {
    display: none;
}

@media (max-width: 1000px) {

    .provider-mobile-menu-toggle {
        display: flex;

        position: fixed;
        top: 15px;
        left: 15px;

        width: 48px;
        height: 48px;

        border: none;
        border-radius: 14px;

        background: #4f6df5;

        color: #ffffff;

        align-items: center;
        justify-content: center;

        font-size: 22px;

        z-index: 1200;

        box-shadow: 0 10px 25px rgba(0,0,0,.15);
    }

    .provider-sidebar {
        transform: translateX(-100%);
        transition: .3s ease;
    }

    .provider-sidebar.is-open {
        transform: translateX(0);
    }

    .provider-sidebar-overlay {
        position: fixed;
        inset: 0;

        background: rgba(0,0,0,.45);

        z-index: 900;
    }

    .provider-sidebar-overlay.is-open {
        display: block;
    }
}