/* /App.razor.rz.scp.css */


.auth-state-container[b-hobjwys06n] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-state-card[b-hobjwys06n] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px;
    width: 100%;
    max-width: 500px;
    animation: slideUp-b-hobjwys06n 0.6s ease-out;
    text-align: center;
}

.loading-card[b-hobjwys06n] {
    max-width: 400px;
    padding: 40px;
}

@keyframes slideUp-b-hobjwys06n {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-state-header[b-hobjwys06n] {
    margin-bottom: 32px;
}

.auth-state-icon[b-hobjwys06n] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.error-icon[b-hobjwys06n] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.4);
}

.warning-icon[b-hobjwys06n] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
}

.loading-icon[b-hobjwys06n] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.4);
}

.auth-state-header h1[b-hobjwys06n] {
    color: #1e293b;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.auth-state-header p[b-hobjwys06n] {
    color: #64748b;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.auth-state-content[b-hobjwys06n] {
    margin-bottom: 24px;
}

.info-card[b-hobjwys06n] {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.info-card.error[b-hobjwys06n] {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.info-card.warning[b-hobjwys06n] {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.info-card .info-icon[b-hobjwys06n] {
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-card.error .info-icon[b-hobjwys06n] {
    background: #ef4444;
    color: white;
}

.info-card.warning .info-icon[b-hobjwys06n] {
    background: #f59e0b;
    color: white;
}

.info-content h3[b-hobjwys06n] {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.info-content p[b-hobjwys06n] {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.info-card.error .info-content h3[b-hobjwys06n] {
    color: #dc2626;
}

.info-card.error .info-content p[b-hobjwys06n] {
    color: #991b1b;
}

.info-card.warning .info-content h3[b-hobjwys06n] {
    color: #d97706;
}

.info-card.warning .info-content p[b-hobjwys06n] {
    color: #92400e;
}

.action-buttons[b-hobjwys06n] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-hobjwys06n] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    min-width: 140px;
    cursor: pointer;
}

.btn:hover[b-hobjwys06n] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

.btn-primary[b-hobjwys06n] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-hobjwys06n] {
    box-shadow: 0 8px 25px -8px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-hobjwys06n] {
    background: #f8fafc;
    color: #475569;
    border-color: #e2e8f0;
}

.btn-secondary:hover[b-hobjwys06n] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.spinner[b-hobjwys06n] {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin-b-hobjwys06n 1s linear infinite;
}

@keyframes spin-b-hobjwys06n {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .auth-state-container[b-hobjwys06n] {
        padding: 16px;
    }

    .auth-state-card[b-hobjwys06n] {
        padding: 32px 24px;
    }

    .loading-card[b-hobjwys06n] {
        padding: 32px 24px;
    }

    .auth-state-header h1[b-hobjwys06n] {
        font-size: 24px;
    }

    .action-buttons[b-hobjwys06n] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-hobjwys06n] {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .auth-state-card[b-hobjwys06n], .loading-card[b-hobjwys06n] {
        padding: 24px 16px;
    }

    .auth-state-header h1[b-hobjwys06n] {
        font-size: 20px;
    }

    .info-card[b-hobjwys06n] {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-content[b-hobjwys06n] {
        text-align: center;
    }

    .spinner[b-hobjwys06n] {
        width: 40px;
        height: 40px;
    }
}
/* /Components/Sidebar.razor.rz.scp.css */
.sidebar[b-lybh9uiplb] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar.collapsed[b-lybh9uiplb] {
    width: 80px;
}

.sidebar-header[b-lybh9uiplb] {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo-container[b-lybh9uiplb] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.logo-icon[b-lybh9uiplb] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text[b-lybh9uiplb] {
    color: white;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.collapse-btn[b-lybh9uiplb] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collapse-btn:hover[b-lybh9uiplb] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sidebar-nav[b-lybh9uiplb] {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.nav-section[b-lybh9uiplb] {
    padding: 0 20px;
    margin-bottom: 16px;
}

.nav-item[b-lybh9uiplb] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.nav-item:hover[b-lybh9uiplb] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(4px);
}

.nav-item.active[b-lybh9uiplb] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item.active[b-lybh9uiplb]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: white;
    border-radius: 0 4px 4px 0;
}

.nav-icon[b-lybh9uiplb] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.nav-text[b-lybh9uiplb] {
    white-space: nowrap;
    overflow: hidden;
}

.nav-divider[b-lybh9uiplb] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 20px;
}

.logout-item[b-lybh9uiplb] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.logout-item:hover[b-lybh9uiplb] {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateX(0);
}

.sidebar-footer[b-lybh9uiplb] {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info[b-lybh9uiplb] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar[b-lybh9uiplb] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-details[b-lybh9uiplb] {
    flex: 1;
    min-width: 0;
}

.user-name[b-lybh9uiplb] {
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role[b-lybh9uiplb] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Collapsed state adjustments */
.sidebar.collapsed .nav-item[b-lybh9uiplb] {
    justify-content: center;
    padding: 14px 12px;
}

.sidebar.collapsed .nav-text[b-lybh9uiplb] {
    display: none;
}

.sidebar.collapsed .logo-text[b-lybh9uiplb] {
    display: none;
}

.sidebar.collapsed .collapse-btn[b-lybh9uiplb] {
    transform: rotate(180deg);
}

.sidebar.collapsed .user-info[b-lybh9uiplb] {
    justify-content: center;
}

.sidebar.collapsed .user-details[b-lybh9uiplb] {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .sidebar[b-lybh9uiplb] {
        transform: translateX(-100%);
    }
    
    .sidebar.mobile-open[b-lybh9uiplb] {
        transform: translateX(0);
    }
    
    .sidebar.collapsed[b-lybh9uiplb] {
        width: 280px;
    }
}

/* Smooth scrollbar for navigation */
.sidebar-nav[b-lybh9uiplb]::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav[b-lybh9uiplb]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.sidebar-nav[b-lybh9uiplb]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.sidebar-nav[b-lybh9uiplb]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Animation for nav items */
@keyframes slideIn-b-lybh9uiplb {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-item[b-lybh9uiplb] {
    animation: slideIn-b-lybh9uiplb 0.3s ease-out;
}

/* Tooltip for collapsed state */
.sidebar.collapsed .nav-item[b-lybh9uiplb] {
    position: relative;
}

.sidebar.collapsed .nav-item:hover[b-lybh9uiplb]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #1e293b;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    margin-left: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar.collapsed .nav-item:hover[b-lybh9uiplb]::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #1e293b;
    margin-left: 6px;
}
/* /Components/StatCard.razor.rz.scp.css */

.stat-card[b-u9400jb322] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover[b-u9400jb322] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.stat-divider[b-u9400jb322] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-header[b-u9400jb322] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-icon[b-u9400jb322] {
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.users[b-u9400jb322] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-icon.clock[b-u9400jb322] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.stat-icon.calendar[b-u9400jb322] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: white;
}

.stat-icon.trending-up[b-u9400jb322] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.stat-title[b-u9400jb322] {
    color: #374151;
    font-size: 16px;
    font-weight: 600;
}

.stat-value[b-u9400jb322] {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-change[b-u9400jb322] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.change-badge[b-u9400jb322] {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.change-positive[b-u9400jb322] {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #6ee7b7;
}

.change-negative[b-u9400jb322] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.change-period[b-u9400jb322] {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-card[b-u9400jb322] {
        padding: 20px;
    }

    .stat-value[b-u9400jb322] {
        font-size: 28px;
    }

    .stat-title[b-u9400jb322] {
        font-size: 14px;
    }
}
/* /Pages/AuthCallback.razor.rz.scp.css */

.auth-callback-container[b-us08vq1aie] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-callback-card[b-us08vq1aie] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px;
    width: 100%;
    max-width: 550px;
    animation: slideUp-b-us08vq1aie 0.6s ease-out;
    text-align: center;
}

@keyframes slideUp-b-us08vq1aie {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-callback-header[b-us08vq1aie] {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f5f9;
}

.auth-callback-icon[b-us08vq1aie] {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.spinner-large[b-us08vq1aie] {
    width: 64px;
    height: 64px;
    border: 6px solid #f3f4f6;
    border-top: 6px solid #667eea;
    border-radius: 50%;
    animation: spin-b-us08vq1aie 1s linear infinite;
}

.spinner-small[b-us08vq1aie] {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin-b-us08vq1aie 1s linear infinite;
}

@keyframes spin-b-us08vq1aie {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.auth-callback-header h1[b-us08vq1aie] {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-callback-header p[b-us08vq1aie] {
    color: #64748b;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.auth-callback-content[b-us08vq1aie] {
    margin-bottom: 32px;
    text-align: left;
}

.progress-steps[b-us08vq1aie] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step[b-us08vq1aie] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-active[b-us08vq1aie] {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #047857;
}

.step-processing[b-us08vq1aie] {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.step-icon[b-us08vq1aie] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-active .step-icon[b-us08vq1aie] {
    background: #10b981;
    color: white;
}

.step-processing .step-icon[b-us08vq1aie] {
    background: #3b82f6;
    color: white;
}

.step:not(.step-active):not(.step-processing) .step-icon[b-us08vq1aie] {
    background: #e2e8f0;
    color: #64748b;
}

.auth-info-card[b-us08vq1aie] {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon[b-us08vq1aie] {
    background: #3b82f6;
    color: white;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-content h3[b-us08vq1aie] {
    color: #1e40af;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.info-content p[b-us08vq1aie] {
    color: #1e3a8a;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.loading-tips[b-us08vq1aie] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.loading-tips h4[b-us08vq1aie] {
    color: #334155;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.loading-tips ul[b-us08vq1aie] {
    margin: 0;
    padding-left: 20px;
    color: #64748b;
}

.loading-tips li[b-us08vq1aie] {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.loading-tips li:last-child[b-us08vq1aie] {
    margin-bottom: 0;
}

.auth-callback-footer[b-us08vq1aie] {
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.auth-callback-footer p[b-us08vq1aie] {
    color: #64748b;
    margin: 8px 0;
    font-size: 14px;
}

.auth-callback-footer p:first-child[b-us08vq1aie] {
    font-weight: 600;
    color: #475569;
}

.auth-callback-footer a[b-us08vq1aie] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-callback-footer a:hover[b-us08vq1aie] {
    color: #5a67d8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-callback-container[b-us08vq1aie] {
        padding: 16px;
    }

    .auth-callback-card[b-us08vq1aie] {
        padding: 32px 24px;
    }

    .auth-callback-header h1[b-us08vq1aie] {
        font-size: 28px;
    }

    .progress-steps[b-us08vq1aie] {
        padding: 20px;
    }

    .step[b-us08vq1aie] {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .auth-callback-card[b-us08vq1aie] {
        padding: 24px 16px;
    }

    .auth-callback-header h1[b-us08vq1aie] {
        font-size: 24px;
    }

    .spinner-large[b-us08vq1aie] {
        width: 48px;
        height: 48px;
        border-width: 4px;
    }

    .auth-info-card[b-us08vq1aie] {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-content[b-us08vq1aie] {
        text-align: center;
    }

    .progress-steps[b-us08vq1aie] {
        padding: 16px;
    }

    .loading-tips[b-us08vq1aie] {
        padding: 16px;
    }
}
/* /Pages/AuthenticationResult.razor.rz.scp.css */

.auth-result-container[b-fk2yrlywym] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.result-card[b-fk2yrlywym] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    animation: slideUp-b-fk2yrlywym 0.5s ease-out;
    text-align: center;
}

@keyframes slideUp-b-fk2yrlywym {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-icon[b-fk2yrlywym] {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.success-icon[b-fk2yrlywym] {
    color: #10b981;
}

.error-icon[b-fk2yrlywym] {
    color: #ef4444;
}

.result-header[b-fk2yrlywym] {
    margin-bottom: 32px;
}

.result-header h1[b-fk2yrlywym] {
    color: #1f2937;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.result-header h2[b-fk2yrlywym] {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.result-header p[b-fk2yrlywym] {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.user-info[b-fk2yrlywym] {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.info-item[b-fk2yrlywym] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child[b-fk2yrlywym] {
    border-bottom: none;
}

.info-label[b-fk2yrlywym] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.info-value[b-fk2yrlywym] {
    color: #1f2937;
    font-weight: 500;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.role-badge[b-fk2yrlywym] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-buttons[b-fk2yrlywym] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn[b-fk2yrlywym] {
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    padding: 14px 24px;
    min-width: 140px;
}

.btn-primary[b-fk2yrlywym] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-fk2yrlywym] {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary[b-fk2yrlywym] {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover[b-fk2yrlywym] {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.spinner[b-fk2yrlywym] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-fk2yrlywym 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin-b-fk2yrlywym {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-card .result-icon[b-fk2yrlywym] {
    color: #667eea;
}

@media (max-width: 480px) {
    .auth-result-container[b-fk2yrlywym] {
        padding: 16px;
    }

    .result-card[b-fk2yrlywym] {
        padding: 24px;
    }

    .result-header h1[b-fk2yrlywym] {
        font-size: 24px;
    }

    .result-header h2[b-fk2yrlywym] {
        font-size: 20px;
    }

    .action-buttons[b-fk2yrlywym] {
        flex-direction: column;
    }

    .btn[b-fk2yrlywym] {
        width: 100%;
        min-width: auto;
    }

    .info-item[b-fk2yrlywym] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .info-value[b-fk2yrlywym] {
        justify-content: flex-start;
    }
}
/* /Pages/Dashboard.razor.rz.scp.css */
.page-layout[b-6xbugj9nkb] {
    display: flex;
    min-height: 100vh;
}

.main-content[b-6xbugj9nkb] {
    margin-left: 280px;
    transition: margin-left 0.3s ease;
    flex: 1;
    width: calc(100vw - 280px);
}

.main-content.sidebar-collapsed[b-6xbugj9nkb] {
    margin-left: 80px; /* Width of collapsed sidebar */
    width: calc(100vw - 80px);
}

.dashboard-container[b-6xbugj9nkb] {
    min-height: 100vh;
    background: #f8fafc;
    padding: 24px;
}

.dashboard-header[b-6xbugj9nkb] {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.dashboard-title[b-6xbugj9nkb] {
    color: #1e293b;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-subtitle[b-6xbugj9nkb] {
    color: #64748b;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.dashboard-section[b-6xbugj9nkb] {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.section-header[b-6xbugj9nkb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title[b-6xbugj9nkb] {
    color: #334155;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.section-meta[b-6xbugj9nkb] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.last-updated[b-6xbugj9nkb] {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.section-actions[b-6xbugj9nkb] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-container[b-6xbugj9nkb] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-input[b-6xbugj9nkb] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
}

.search-input:focus[b-6xbugj9nkb] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.user-count[b-6xbugj9nkb] {
    color: #666;
    font-size: 14px;
}

.stats-grid[b-6xbugj9nkb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.users-table-container[b-6xbugj9nkb] {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.users-table[b-6xbugj9nkb] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.users-table thead th[b-6xbugj9nkb] {
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.user-row[b-6xbugj9nkb] {
    transition: all 0.2s ease;
    cursor: pointer;
}

.user-row:hover[b-6xbugj9nkb] {
    background: #f8fafc;
}

.user-row td[b-6xbugj9nkb] {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #374151;
}

.user-id[b-6xbugj9nkb] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar[b-6xbugj9nkb] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-id-text[b-6xbugj9nkb] {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
    font-weight: 600;
}

.user-email[b-6xbugj9nkb] {
    font-weight: 500;
    color: #1e293b;
}

.role-badge[b-6xbugj9nkb] {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-admin[b-6xbugj9nkb] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.role-user[b-6xbugj9nkb] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.status-badge[b-6xbugj9nkb] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active[b-6xbugj9nkb] {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #6ee7b7;
}

.status-inactive[b-6xbugj9nkb] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.status-dot[b-6xbugj9nkb] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-active .status-dot[b-6xbugj9nkb] {
    background: #10b981;
}

.status-inactive .status-dot[b-6xbugj9nkb] {
    background: #ef4444;
}

.confirmation-badge[b-6xbugj9nkb] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.confirmed[b-6xbugj9nkb] {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #6ee7b7;
}

.unconfirmed[b-6xbugj9nkb] {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fbbf24;
}

.user-created[b-6xbugj9nkb] {
    color: #64748b;
    font-size: 13px;
}

.btn[b-6xbugj9nkb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary[b-6xbugj9nkb] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-primary:hover[b-6xbugj9nkb] {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px -8px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-6xbugj9nkb] {
    background: #f8fafc;
    color: #475569;
    border-color: #e2e8f0;
}

.btn-secondary:hover[b-6xbugj9nkb] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-sm[b-6xbugj9nkb] {
    padding: 6px 12px;
    font-size: 12px;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content[b-6xbugj9nkb] {
        margin-left: 0;
        width: 100vw;
    }
    
    .main-content.sidebar-collapsed[b-6xbugj9nkb] {
        margin-left: 0;
        width: 100vw;
    }
    
    .dashboard-container[b-6xbugj9nkb] {
        padding: 16px;
    }
    
    .dashboard-header[b-6xbugj9nkb] {
        padding: 24px;
    }
    
    .dashboard-section[b-6xbugj9nkb] {
        padding: 24px;
    }
}
/* /Pages/EditUser.razor.rz.scp.css */
.page-layout[b-kr5kq5xpg4] {
    display: flex;
    min-height: 100vh;
}

.main-content[b-kr5kq5xpg4] {
    margin-left: 280px;
    transition: margin-left 0.3s ease;
    flex: 1;
    width: calc(100vw - 280px);
}

.main-content.sidebar-collapsed[b-kr5kq5xpg4] {
    margin-left: 80px;
    width: calc(100vw - 80px);
}

.user-container[b-kr5kq5xpg4] {
    min-height: 100vh;
    background: #f8fafc;
    padding: 24px;
}

.user-header[b-kr5kq5xpg4] {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.header-content[b-kr5kq5xpg4] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-back[b-kr5kq5xpg4] {
    align-self: flex-start;
}

.user-title[b-kr5kq5xpg4] {
    color: #1e293b;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-subtitle[b-kr5kq5xpg4] {
    color: #64748b;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.loading-section[b-kr5kq5xpg4], .error-section[b-kr5kq5xpg4] {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.loading-spinner[b-kr5kq5xpg4] {
    color: #667eea;
    font-size: 16px;
    font-weight: 500;
}

.error-message[b-kr5kq5xpg4] {
    color: #dc2626;
    font-size: 16px;
    font-weight: 500;
}

.user-form-section[b-kr5kq5xpg4] {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-container[b-kr5kq5xpg4] {
    max-width: 800px;
}

.form-header[b-kr5kq5xpg4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.form-title[b-kr5kq5xpg4] {
    color: #334155;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.user-status-display[b-kr5kq5xpg4] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.status-badge[b-kr5kq5xpg4] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active[b-kr5kq5xpg4] {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #6ee7b7;
}

.status-inactive[b-kr5kq5xpg4] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.status-dot[b-kr5kq5xpg4] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-active .status-dot[b-kr5kq5xpg4] {
    background: #10b981;
}

.status-inactive .status-dot[b-kr5kq5xpg4] {
    background: #ef4444;
}

.confirmation-badge[b-kr5kq5xpg4] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.confirmed[b-kr5kq5xpg4] {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #6ee7b7;
}

.unconfirmed[b-kr5kq5xpg4] {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fbbf24;
}

.form-grid[b-kr5kq5xpg4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.form-group[b-kr5kq5xpg4] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-kr5kq5xpg4] {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-input[b-kr5kq5xpg4], .form-select[b-kr5kq5xpg4] {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus[b-kr5kq5xpg4], .form-select:focus[b-kr5kq5xpg4] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:disabled[b-kr5kq5xpg4] {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.form-help[b-kr5kq5xpg4] {
    color: #64748b;
    font-size: 12px;
    font-style: italic;
}

.form-error[b-kr5kq5xpg4] {
    color: #dc2626;
    font-size: 12px;
    font-weight: 500;
}

.form-toggles[b-kr5kq5xpg4] {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.toggle-group[b-kr5kq5xpg4] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toggle-label[b-kr5kq5xpg4] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.toggle-input[b-kr5kq5xpg4] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.toggle-slider[b-kr5kq5xpg4] {
    width: 48px;
    height: 24px;
    background: #cbd5e1;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-slider[b-kr5kq5xpg4]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-input:checked + .toggle-slider[b-kr5kq5xpg4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toggle-input:checked + .toggle-slider[b-kr5kq5xpg4]::after {
    transform: translateX(24px);
}

.toggle-text[b-kr5kq5xpg4] {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.toggle-help[b-kr5kq5xpg4] {
    color: #64748b;
    font-size: 12px;
    margin-left: 60px;
}

.form-actions[b-kr5kq5xpg4] {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.btn[b-kr5kq5xpg4] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 140px;
}

.btn:disabled[b-kr5kq5xpg4] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-kr5kq5xpg4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-primary:hover:not(:disabled)[b-kr5kq5xpg4] {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px -8px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-kr5kq5xpg4] {
    background: #f8fafc;
    color: #475569;
    border-color: #e2e8f0;
}

.btn-secondary:hover:not(:disabled)[b-kr5kq5xpg4] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.spinner[b-kr5kq5xpg4] {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-b-kr5kq5xpg4 1s linear infinite;
}

@keyframes spin-b-kr5kq5xpg4 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content[b-kr5kq5xpg4] {
        margin-left: 0;
        width: 100vw;
    }
    
    .main-content.sidebar-collapsed[b-kr5kq5xpg4] {
        margin-left: 0;
        width: 100vw;
    }
    
    .user-container[b-kr5kq5xpg4] {
        padding: 16px;
    }
    
    .user-header[b-kr5kq5xpg4] {
        padding: 24px;
    }
    
    .user-form-section[b-kr5kq5xpg4] {
        padding: 24px;
    }
    
    .form-grid[b-kr5kq5xpg4] {
        grid-template-columns: 1fr;
    }
    
    .form-actions[b-kr5kq5xpg4] {
        flex-direction: column;
    }
    
    .btn[b-kr5kq5xpg4] {
        width: 100%;
    }
    
    .form-header[b-kr5kq5xpg4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .user-status-display[b-kr5kq5xpg4] {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .user-title[b-kr5kq5xpg4] {
        font-size: 28px;
    }
    
    .user-subtitle[b-kr5kq5xpg4] {
        font-size: 16px;
    }
    
    .toggle-help[b-kr5kq5xpg4] {
        margin-left: 0;
        margin-top: 4px;
    }
}
/* /Pages/ForLoggedInUsers.razor.rz.scp.css */
.page-container[b-gj2dq0055a] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-card[b-gj2dq0055a] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px;
    width: 100%;
    max-width: 700px;
    animation: slideUp-b-gj2dq0055a 0.6s ease-out;
}

@keyframes slideUp-b-gj2dq0055a {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header[b-gj2dq0055a] {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f5f9;
}

.page-icon[b-gj2dq0055a] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
}

.warning-icon[b-gj2dq0055a] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.page-header h1[b-gj2dq0055a] {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p[b-gj2dq0055a] {
    color: #64748b;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.content-section[b-gj2dq0055a] {
    margin-bottom: 40px;
}

.info-card[b-gj2dq0055a] {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon[b-gj2dq0055a] {
    background: #f59e0b;
    color: white;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-content h3[b-gj2dq0055a] {
    color: #92400e;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.info-content p[b-gj2dq0055a] {
    color: #78350f;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.feature-grid[b-gj2dq0055a] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.feature-item[b-gj2dq0055a] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-item:hover[b-gj2dq0055a] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.feature-icon[b-gj2dq0055a] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.feature-icon.success[b-gj2dq0055a] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: white;
}

.feature-icon.info[b-gj2dq0055a] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.feature-icon.warning[b-gj2dq0055a] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.feature-item h4[b-gj2dq0055a] {
    color: #334155;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.feature-item p[b-gj2dq0055a] {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.action-section[b-gj2dq0055a] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.btn[b-gj2dq0055a] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    min-width: 160px;
}

.btn:hover[b-gj2dq0055a] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

.btn-primary[b-gj2dq0055a] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-gj2dq0055a] {
    box-shadow: 0 8px 25px -8px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-gj2dq0055a] {
    background: #f8fafc;
    color: #475569;
    border-color: #e2e8f0;
}

.btn-secondary:hover[b-gj2dq0055a] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

@media (max-width: 768px) {
    .page-container[b-gj2dq0055a] {
        padding: 16px;
    }

    .page-card[b-gj2dq0055a] {
        padding: 32px 24px;
    }

    .page-header h1[b-gj2dq0055a] {
        font-size: 28px;
    }

    .feature-grid[b-gj2dq0055a] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .action-section[b-gj2dq0055a] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-gj2dq0055a] {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-card[b-gj2dq0055a] {
        padding: 24px 16px;
    }

    .page-header h1[b-gj2dq0055a] {
        font-size: 24px;
    }

    .info-card[b-gj2dq0055a] {
        flex-direction: column;
        text-align: center;
    }

    .feature-item[b-gj2dq0055a] {
        padding: 20px;
    }
}
/* /Pages/Index.Razor.rz.scp.css */


.homepage-container[b-euckdgmrmk] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.homepage-card[b-euckdgmrmk] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px;
    width: 100%;
    max-width: 800px;
    animation: slideUp-b-euckdgmrmk 0.6s ease-out;
}

@keyframes slideUp-b-euckdgmrmk {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homepage-header[b-euckdgmrmk] {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f5f9;
}

.logo-section[b-euckdgmrmk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-icon[b-euckdgmrmk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.4);
}

.homepage-header h1[b-euckdgmrmk] {
    color: #1e293b;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.homepage-header p[b-euckdgmrmk] {
    color: #64748b;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.nav-sections[b-euckdgmrmk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.nav-section h2[b-euckdgmrmk] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.nav-links[b-euckdgmrmk] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-link[b-euckdgmrmk] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.nav-link:hover[b-euckdgmrmk] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

.nav-link.primary[b-euckdgmrmk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.nav-link.primary:hover[b-euckdgmrmk] {
    box-shadow: 0 8px 25px -8px rgba(102, 126, 234, 0.4);
}

.nav-link.secondary[b-euckdgmrmk] {
    background: #f8fafc;
    color: #475569;
    border-color: #e2e8f0;
}

.nav-link.secondary:hover[b-euckdgmrmk] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.nav-link.info[b-euckdgmrmk] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.nav-link.info:hover[b-euckdgmrmk] {
    box-shadow: 0 8px 25px -8px rgba(59, 130, 246, 0.4);
}

.nav-link.success[b-euckdgmrmk] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: white;
}

.nav-link.success:hover[b-euckdgmrmk] {
    box-shadow: 0 8px 25px -8px rgba(16, 185, 129, 0.4);
}

.nav-link.warning[b-euckdgmrmk] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.nav-link.warning:hover[b-euckdgmrmk] {
    box-shadow: 0 8px 25px -8px rgba(245, 158, 11, 0.4);
}

.nav-link.danger[b-euckdgmrmk] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.nav-link.danger:hover[b-euckdgmrmk] {
    box-shadow: 0 8px 25px -8px rgba(239, 68, 68, 0.4);
}

.homepage-footer[b-euckdgmrmk] {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.homepage-footer p[b-euckdgmrmk] {
    color: #64748b;
    margin: 8px 0;
    font-size: 16px;
}

.homepage-footer p:first-child[b-euckdgmrmk] {
    font-weight: 600;
    color: #475569;
}

@media (max-width: 768px) {
    .homepage-container[b-euckdgmrmk] {
        padding: 16px;
    }

    .homepage-card[b-euckdgmrmk] {
        padding: 32px 24px;
    }

    .homepage-header h1[b-euckdgmrmk] {
        font-size: 28px;
    }

    .homepage-header p[b-euckdgmrmk] {
        font-size: 16px;
    }

    .nav-sections[b-euckdgmrmk] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-section h2[b-euckdgmrmk] {
        font-size: 18px;
    }

    .nav-link[b-euckdgmrmk] {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .homepage-card[b-euckdgmrmk] {
        padding: 24px 16px;
    }

    .logo-icon[b-euckdgmrmk] {
        padding: 12px;
    }

    .homepage-header h1[b-euckdgmrmk] {
        font-size: 24px;
    }

    .nav-link[b-euckdgmrmk] {
        padding: 12px 14px;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.login-container[b-gtwgyzhvyj] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-card[b-gtwgyzhvyj] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    animation: slideUp-b-gtwgyzhvyj 0.5s ease-out;
}

@keyframes slideUp-b-gtwgyzhvyj {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-gtwgyzhvyj] {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h2[b-gtwgyzhvyj] {
    color: #1f2937;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.login-header p[b-gtwgyzhvyj] {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

.form-group[b-gtwgyzhvyj] {
    margin-bottom: 24px;
}

.form-group label[b-gtwgyzhvyj] {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-container[b-gtwgyzhvyj] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-gtwgyzhvyj] {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    z-index: 1;
}

.input-container input[b-gtwgyzhvyj] {
    width: 100%;
    padding: 12px 12px 12px 44px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: #f9fafb;
    box-sizing: border-box;
}

.input-container input:focus[b-gtwgyzhvyj] {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-container input.error[b-gtwgyzhvyj] {
    border-color: #ef4444;
    background: #fef2f2;
}

.input-container input:disabled[b-gtwgyzhvyj] {
    background: #f3f4f6;
    cursor: not-allowed;
}

.password-toggle[b-gtwgyzhvyj] {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.password-toggle:hover:not(:disabled)[b-gtwgyzhvyj] {
    color: #667eea;
}

.password-toggle:disabled[b-gtwgyzhvyj] {
    cursor: not-allowed;
    opacity: 0.5;
}

.form-options[b-gtwgyzhvyj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-container[b-gtwgyzhvyj] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    user-select: none;
}

.checkbox-container input[type="checkbox"][b-gtwgyzhvyj] {
    display: none;
}

.checkmark[b-gtwgyzhvyj] {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark[b-gtwgyzhvyj] {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark[b-gtwgyzhvyj]::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password[b-gtwgyzhvyj] {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-gtwgyzhvyj] {
    color: #5a67d8;
    text-decoration: underline;
}

.error-message[b-gtwgyzhvyj] {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

.error-banner[b-gtwgyzhvyj] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn[b-gtwgyzhvyj] {
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary[b-gtwgyzhvyj] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 24px;
}

.btn-primary:hover:not(:disabled)[b-gtwgyzhvyj] {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:disabled[b-gtwgyzhvyj] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-login[b-gtwgyzhvyj] {
    width: 100%;
}

.btn-spinner[b-gtwgyzhvyj] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-gtwgyzhvyj 1s linear infinite;
}

@keyframes spin-b-gtwgyzhvyj {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-footer[b-gtwgyzhvyj] {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.login-footer p[b-gtwgyzhvyj] {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

.login-footer a[b-gtwgyzhvyj] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-footer a:hover[b-gtwgyzhvyj] {
    color: #5a67d8;
    text-decoration: underline;
}

.success-container[b-gtwgyzhvyj] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 420px;
    animation: slideUp-b-gtwgyzhvyj 0.5s ease-out;
}

.success-icon[b-gtwgyzhvyj] {
    color: #10b981;
    margin-bottom: 16px;
}

.success-container h1[b-gtwgyzhvyj] {
    color: #1f2937;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

login-container
.success-container p[b-gtwgyzhvyj] {
    color: #6b7280;
    margin-bottom: 24px;
}

.loading-container[b-gtwgyzhvyj] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 420px;
}

.spinner[b-gtwgyzhvyj] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-gtwgyzhvyj 1s linear infinite;
    margin: 0 auto 16px;
}

.loading-container p[b-gtwgyzhvyj] {
    color: #6b7280;
    margin: 0;
}

@media (max-width: 480px) {
    .login-container[b-gtwgyzhvyj] {
        padding: 16px;
    }
    
    .login-card[b-gtwgyzhvyj], .success-container[b-gtwgyzhvyj], .loading-container[b-gtwgyzhvyj] {
        padding: 24px;
    }
    
    .login-header h2[b-gtwgyzhvyj] {
        font-size: 24px;
    }
    
    .form-options[b-gtwgyzhvyj] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* /Pages/Logout.razor.rz.scp.css */
.logout-container[b-bwkav2ajk4] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logout-card[b-bwkav2ajk4] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px;
    width: 100%;
    max-width: 500px;
    animation: slideUp-b-bwkav2ajk4 0.6s ease-out;
    text-align: center;
}

@keyframes slideUp-b-bwkav2ajk4 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logout-header[b-bwkav2ajk4] {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f5f9;
}

.logout-icon[b-bwkav2ajk4] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 16px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.4);
}

.logout-header h1[b-bwkav2ajk4] {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logout-header p[b-bwkav2ajk4] {
    color: #64748b;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.logout-content[b-bwkav2ajk4] {
    margin-bottom: 40px;
}

.info-card[b-bwkav2ajk4] {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.info-icon[b-bwkav2ajk4] {
    background: #10b981;
    color: white;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-content h3[b-bwkav2ajk4] {
    color: #047857;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.info-content p[b-bwkav2ajk4] {
    color: #065f46;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.logout-features[b-bwkav2ajk4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.feature-item[b-bwkav2ajk4] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.feature-item:hover[b-bwkav2ajk4] {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.feature-icon[b-bwkav2ajk4] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: white;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logout-actions[b-bwkav2ajk4] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn[b-bwkav2ajk4] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    min-width: 160px;
    cursor: pointer;
}

.btn:hover[b-bwkav2ajk4] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

.btn-logout[b-bwkav2ajk4] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
}

.btn-logout:hover[b-bwkav2ajk4] {
    box-shadow: 0 8px 25px -8px rgba(239, 68, 68, 0.4);
}

.btn-secondary[b-bwkav2ajk4] {
    background: #f8fafc;
    color: #475569;
    border-color: #e2e8f0;
}

.btn-secondary:hover[b-bwkav2ajk4] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.logout-footer[b-bwkav2ajk4] {
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.logout-footer p[b-bwkav2ajk4] {
    color: #64748b;
    margin: 8px 0;
    font-size: 14px;
}

.logout-footer p:first-child[b-bwkav2ajk4] {
    font-weight: 600;
    color: #475569;
}

@media (max-width: 768px) {
    .logout-container[b-bwkav2ajk4] {
        padding: 16px;
    }

    .logout-card[b-bwkav2ajk4] {
        padding: 32px 24px;
    }

    .logout-header h1[b-bwkav2ajk4] {
        font-size: 28px;
    }

    .logout-features[b-bwkav2ajk4] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .logout-actions[b-bwkav2ajk4] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-bwkav2ajk4] {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .logout-card[b-bwkav2ajk4] {
        padding: 24px 16px;
    }

    .logout-header h1[b-bwkav2ajk4] {
        font-size: 24px;
    }

    .info-card[b-bwkav2ajk4] {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-content[b-bwkav2ajk4] {
        text-align: center;
    }

    .feature-item[b-bwkav2ajk4] {
        padding: 12px;
        font-size: 13px;
    }

    .feature-icon[b-bwkav2ajk4] {
        padding: 6px;
    }
}
