/* /Components/UserEnrollments.razor.rz.scp.css */
.item[b-slcj9wvldp] {
    display:block;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Layout */
.layout-root[b-gbb384gc0u] {
    height: 100vh;
    overflow: hidden;
}

header[b-gbb384gc0u] {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
}

.toggle-btn[b-gbb384gc0u] {
    border:none;
}

/* Main layout */
.main-container[b-gbb384gc0u] {
    display: flex;
    height: calc(100vh - 60px);
    position: relative;
}

/* Sidebar */
.sidebar[b-gbb384gc0u] {
    width: 220px;
    background: #f5f5f5;
    padding: 20px 0 0 0;
    transition: transform 0.3s ease;
}

/* Desktop behavior */
@media (min-width: 769px) {
    .sidebar[b-gbb384gc0u] {
        transform: translateX(0); /* always visible */
    }
}

/* Mobile behavior */
@media (max-width: 768px) {

    .sidebar[b-gbb384gc0u] {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1001;
        transform: translateX(-100%);
    }

        .sidebar.open[b-gbb384gc0u] {
            transform: translateX(0);
        }

    main[b-gbb384gc0u] {
        width: 100%;
    }

    .overlay[b-gbb384gc0u] {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1000;
    }
}

/* Main content */
main[b-gbb384gc0u] {
    flex: 1;
    padding: 20px;
}

/* Menu */
.menu a[b-gbb384gc0u] {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
}
/* /Layout/NavMenu.razor.rz.scp.css */


nav[b-vhgds7eoub] {
    padding:20px 5px 10px 20px;
    display:flex;
    flex-direction:column;

}

/*    nav a, nav ::deep a {
        display: block;
    }*/

    @media(pointer:coarse){
        nav[b-vhgds7eoub]{

        gap:20px;
        }
    }
/* /Pages/AppsPage.razor.rz.scp.css */
/* Page wrapper */
.page-wrapper-600[b-gjq2c3v82r] {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

    /* Title */
    .page-wrapper-600 h3[b-gjq2c3v82r] {
        margin-bottom: 20px;
        font-size: 1.6rem;
        font-weight: 600;
        color: #333;
    }

/* Grid layout */
.grid[b-gjq2c3v82r] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Grid item container */
.grid-item[b-gjq2c3v82r] {
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Card wrapper (ContextMenu content) */
    .grid-item > div[b-gjq2c3v82r] {
        background: #fff;
        border-radius: 10px;
        padding: 18px;
        width: 100%;
        min-height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        transition: transform .15s ease, box-shadow .15s ease;
        cursor: pointer;
    }

        /* Hover effect */
        .grid-item > div:hover[b-gjq2c3v82r] {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }

/* Logo image */
.app-logo[b-gjq2c3v82r] {
    width: 150px;
    height: 48px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}
.app-nologo[b-gjq2c3v82r] {
    width: 150px;
    height: 48px;
    pointer-events: none;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 48px;
    border-radius: 5px;
    border: 1px solid gray;
}

/* PageOptions link */
PageOptions a[b-gjq2c3v82r] {
    font-size: 0.95rem;
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
}

    PageOptions a:hover[b-gjq2c3v82r] {
        text-decoration: underline;
    }

/* Preview inside context menu */
.mc-context-menu img[b-gjq2c3v82r] {
    display: block;
    margin: 0 auto;
}
/* /Pages/Auth/LoginPage.razor.rz.scp.css */
/* Page background */
body[b-n24tce62qg] {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login container */
.login-box[b-n24tce62qg] {
    background: #ffffff;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: fadeIn-b-n24tce62qg 0.6s ease-in-out;
}

    /* Title */
    .login-box h2[b-n24tce62qg] {
        margin-bottom: 25px;
        color: #333;
        font-weight: 600;
    }

    /* Inputs */
    .login-box input[type="text"][b-n24tce62qg],
    .login-box input[type="password"][b-n24tce62qg] {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .login-box input:focus[b-n24tce62qg] {
        border-color: #667eea;
        outline: none;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    }

/* Remember me */
.remember-me[b-n24tce62qg] {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    gap: 8px;
    text-align: left;
}

/* Link */
.login-box a[b-n24tce62qg] {
    display: block;
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

    .login-box a:hover[b-n24tce62qg] {
        color: #764ba2;
        text-decoration: underline;
    }

/* Button */
.login-box button[b-n24tce62qg] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .login-box button:hover[b-n24tce62qg] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(118, 75, 162, 0.3);
    }

    .login-box button:active[b-n24tce62qg] {
        transform: translateY(0);
        box-shadow: none;
    }

/* Error message */
.error[b-n24tce62qg] {
    margin-top: 15px;
    font-size: 13px;
    color: #e74c3c;
}

/* Fade animation */
@keyframes fadeIn-b-n24tce62qg {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .login-box[b-n24tce62qg] {
        padding: 25px;
        border-radius: 12px;
    }
}
/* /Pages/UsersPage.razor.rz.scp.css */
.users-list[b-uzsbsg909y] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-card[b-uzsbsg909y] {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}

    .user-card:hover[b-uzsbsg909y] {
        background: #f7f7f7;
        border-color: #ccc;
    }

.user-avatar[b-uzsbsg909y] {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
}

.user-info[b-uzsbsg909y] {
    display: flex;
    flex-direction: column;
}

.user-name[b-uzsbsg909y] {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.user-email[b-uzsbsg909y] {
    font-size: 0.85rem;
    color: #666;
}
