/* _content/Connect/Components/Layout/MainLayout.razor.rz.scp.css */
/* ====== MAIN LAYOUT STRUCTURE ====== */
.main-layout[b-habxhlvmh9] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

/* ====== MOBILE HEADER (Hidden on Desktop by default) ====== */
.mobile-header[b-habxhlvmh9] {
    display: none; /* Hidden by default on desktop */
}

.app-title-mobile[b-habxhlvmh9] {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Segoe UI', sans-serif;
    color: #333333;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
    user-select: none;
}

.menu-toggle[b-habxhlvmh9] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.hamburger[b-habxhlvmh9] {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #004d8a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover .hamburger[b-habxhlvmh9] {
    background-color: #002f5e;
}

/* ====== SIDEBAR OVERLAY (Mobile Only) ====== */
.sidebar-overlay[b-habxhlvmh9] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

    .sidebar-overlay.active[b-habxhlvmh9] {
        opacity: 1;
        pointer-events: all;
    }

/* ====== SIDEBAR ====== */
.sidebar[b-habxhlvmh9] {
    width: 15%;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 999;
    position: relative;
}

.app-title[b-habxhlvmh9] {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Segoe UI', sans-serif;
    color: #333333;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    user-select: none;
}

/* ====== MAIN CONTENT AREA ====== */
.content-area[b-habxhlvmh9] {
    flex: 1;
    background: transparent;
    padding: 1.5rem;
    overflow-y: auto;
}

/* ====== CONTENT WRAPPER ====== */
.content-wrapper[b-habxhlvmh9] {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ====== FADE-IN ANIMATION ====== */
.fade-in[b-habxhlvmh9] {
    animation: fadeIn-b-habxhlvmh9 0.6s ease-in-out;
}

@keyframes fadeIn-b-habxhlvmh9 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet View */
@media (max-width: 900px) {
    .sidebar[b-habxhlvmh9] {
        width: 25%;
        min-width: 180px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    /* Show mobile header */
    .mobile-header[b-habxhlvmh9] {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, #e2e8f0 0%, #e2e8f0 100%);
        padding: 0 1rem;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* Show sidebar overlay */
    .sidebar-overlay[b-habxhlvmh9] {
        display: block;
    }

    /* Transform sidebar into mobile drawer */
    .sidebar[b-habxhlvmh9] {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        min-width: 280px;
        height: 100vh;
        transform: translateX(-100%);
        background: #FAFAFA;
        padding-top: 80px;
        overflow-y: auto;
    }

        .sidebar.open[b-habxhlvmh9] {
            transform: translateX(0);
        }

    /* Hide desktop app title in sidebar on mobile */
    .app-title[b-habxhlvmh9] {
        display: none;
    }

    /* Adjust content area for mobile header */
    .content-area[b-habxhlvmh9] {
        width: 100%;
        padding-top: 75px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .content-wrapper[b-habxhlvmh9] {
        padding: 1.5rem;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .sidebar[b-habxhlvmh9] {
        width: 75%;
        min-width: unset;
        max-width: 280px;
    }

    .content-area[b-habxhlvmh9] {
        padding: 70px 0.75rem 0.75rem;
    }

    .content-wrapper[b-habxhlvmh9] {
        padding: 1rem;
    }

    .mobile-header[b-habxhlvmh9] {
        height: 55px;
    }

    .app-title-mobile[b-habxhlvmh9] {
        font-size: 1.3rem;
    }
}
/* _content/Connect/Components/Layout/NavMenu.razor.rz.scp.css */
.nav-links[b-z2y4qp40cb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

    /* Target NavLink components using ::deep */
    .nav-links[b-z2y4qp40cb]  .nav-link {
        font-size: 1.05rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', Arial, sans-serif;
        color: #004d8a;
        text-decoration: none;
        font-weight: 450;
        padding: 0.7rem 1.1rem;
        border-radius: 6px;
        display: block;
        letter-spacing: 0.01em;
        /* Smooth + springy motion */
        transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        /* Hover bounce */
        .nav-links[b-z2y4qp40cb]  .nav-link:hover {
            background: rgba(0, 77, 138, 0.15);
            color: #002f5e;
            transform: translateX(6px) scale(1.02);
        }

        /* Active state with gentle pressed feel */
        .nav-links[b-z2y4qp40cb]  .nav-link.active {
            background: rgba(0, 107, 183, 0.25);
            color: #002f5e;
            transform: translateX(4px) scale(1.015);
        }

/* ---------------- Dropdown ---------------- */

.dropdown-container[b-z2y4qp40cb] {
    position: relative;
    width: 100%;
}

/* Dropdown Toggle Button */
.dropdown-toggle[b-z2y4qp40cb] {
    width: 100%;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #004d8a;
    font-weight: 450;
    padding: 0.7rem 1.1rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.01em;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .dropdown-toggle:hover[b-z2y4qp40cb] {
        background: rgba(0, 77, 138, 0.15);
        color: #002f5e;
        transform: translateX(6px) scale(1.02);
    }

    .dropdown-toggle.open[b-z2y4qp40cb] {
        background: rgba(0, 107, 183, 0.25);
        color: #002f5e;
        transform: translateX(4px) scale(1.015);
    }

/* Dropdown Arrow */
.dropdown-arrow[b-z2y4qp40cb] {
    font-size: 0.7rem;
    margin-left: auto;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-toggle.open .dropdown-arrow[b-z2y4qp40cb] {
    transform: rotate(180deg) scale(1.1);
}

/* Dropdown Menu */
.dropdown-menu[b-z2y4qp40cb] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-left: 1.2rem;
    margin-top: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.35s ease;
}

    .dropdown-menu.show[b-z2y4qp40cb] {
        max-height: 500px;
        opacity: 1;
        margin-top: 0.5rem;
    }

    /* Dropdown Items */
    .dropdown-menu[b-z2y4qp40cb]  .dropdown-item {
        font-size: 0.95rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', Arial, sans-serif;
        color: #004d8a;
        text-decoration: none;
        font-weight: 400;
        padding: 0.6rem 1rem;
        border-radius: 6px;
        display: block;
        letter-spacing: 0.01em;
        border-left: 2px solid rgba(0, 77, 138, 0.2);
        transition: background-color 0.35s ease, color 0.35s ease, border-left-color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        .dropdown-menu[b-z2y4qp40cb]  .dropdown-item:hover {
            background: rgba(0, 77, 138, 0.12);
            color: #002f5e;
            border-left-color: #004d8a;
            transform: translateX(6px) scale(1.02);
        }

        .dropdown-menu[b-z2y4qp40cb]  .dropdown-item.active {
            background: rgba(0, 107, 183, 0.2);
            color: #002f5e;
            border-left-color: #002f5e;
            transform: translateX(4px) scale(1.015);
        }

/* ---------------- Mobile ---------------- */

@media (max-width: 768px) {
    .nav-links[b-z2y4qp40cb] {
        gap: 0.5rem;
    }

        .nav-links[b-z2y4qp40cb]  .nav-link {
            font-size: 1.1rem;
            padding: 0.8rem 1.2rem;
        }

    .dropdown-toggle[b-z2y4qp40cb] {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }

    .dropdown-menu[b-z2y4qp40cb]  .dropdown-item {
        font-size: 1rem;
        padding: 0.7rem 1.1rem;
    }

    .dropdown-menu[b-z2y4qp40cb] {
        padding-left: 1rem;
    }
}
/* _content/Connect/Components/Pages/CreateStaff.razor.rz.scp.css */
