/* /Components/AuthenticatedHeader.razor.rz.scp.css */
.auth-header[b-vzvok42lbu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content[b-vzvok42lbu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left[b-vzvok42lbu] {
    display: flex;
    align-items: center;
}

.logo-btn[b-vzvok42lbu] {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
    transition: opacity 0.2s ease-in-out;
}

.logo-btn:hover[b-vzvok42lbu] {
    opacity: 0.8;
}

.logo-btn i[b-vzvok42lbu] {
    font-size: 1.8rem;
}

.app-name[b-vzvok42lbu] {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.header-right[b-vzvok42lbu] {
    display: flex;
    align-items: center;
}

.user-info[b-vzvok42lbu] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-greeting[b-vzvok42lbu] {
    font-weight: 500;
    opacity: 0.9;
    font-size: 0.95rem;
}

.user-actions[b-vzvok42lbu] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn[b-vzvok42lbu] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    font-size: 1rem;
}

.nav-btn:hover[b-vzvok42lbu] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-btn.logout-btn:hover[b-vzvok42lbu] {
    background: rgba(220, 53, 69, 0.8);
    border-color: rgba(220, 53, 69, 0.9);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header-content[b-vzvok42lbu] {
        padding: 12px 20px;
    }
    
    .app-name[b-vzvok42lbu] {
        font-size: 1.1rem;
    }
    
    .user-greeting[b-vzvok42lbu] {
        display: none;
    }
    
    .user-actions[b-vzvok42lbu] {
        gap: 8px;
    }
    
    .nav-btn[b-vzvok42lbu] {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-content[b-vzvok42lbu] {
        padding: 10px 15px;
    }
    
    .logo-btn i[b-vzvok42lbu] {
        font-size: 1.5rem;
    }
    
    .app-name[b-vzvok42lbu] {
        font-size: 1rem;
    }
    
    .nav-btn[b-vzvok42lbu] {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
/* /Components/UserProfileDisplay.razor.rz.scp.css */
.user-profile-display[b-03p91hzxe3] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar[b-03p91hzxe3] {
    font-size: 2rem;
    color: #667eea;
    opacity: 0.8;
}

.user-info[b-03p91hzxe3] {
    flex: 1;
}

.user-name[b-03p91hzxe3] {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.user-email[b-03p91hzxe3] {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.user-config[b-03p91hzxe3] {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2px;
}

.config-mode[b-03p91hzxe3], .data-mode[b-03p91hzxe3] {
    font-weight: 500;
}

.user-stats[b-03p91hzxe3] {
    color: #999;
    font-size: 0.8rem;
}

/* Compact variant */
.user-profile-display.compact[b-03p91hzxe3] {
    gap: 8px;
}

.user-profile-display.compact .user-avatar[b-03p91hzxe3] {
    font-size: 1.5rem;
}

.user-profile-display.compact .user-name[b-03p91hzxe3] {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.user-profile-display.compact .user-email[b-03p91hzxe3] {
    font-size: 0.8rem;
}

/* Inline variant */
.user-profile-display.inline[b-03p91hzxe3] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-profile-display.inline .user-info[b-03p91hzxe3] {
    display: inline-block;
}

.user-profile-display.inline .user-name[b-03p91hzxe3],
.user-profile-display.inline .user-email[b-03p91hzxe3] {
    display: inline;
    margin-right: 8px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.fullscreen-container[b-osgoda1ov3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ffffff;
}

/* Remove any default margins/padding from body and html that might interfere */
[b-osgoda1ov3] body,
[b-osgoda1ov3] html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

/* Ensure the blazor app takes full height */
[b-osgoda1ov3] #app {
    height: 100vh;
    margin: 0;
    padding: 0;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kk99v157u6] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-kk99v157u6] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-kk99v157u6] {
    font-size: 1.1rem;
}

.bi[b-kk99v157u6] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-kk99v157u6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-kk99v157u6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-kk99v157u6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-kk99v157u6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-kk99v157u6] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-kk99v157u6] {
        padding-bottom: 1rem;
    }

    .nav-item[b-kk99v157u6]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-kk99v157u6]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-kk99v157u6]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-kk99v157u6] {
        display: none;
    }

    .collapse[b-kk99v157u6] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-kk99v157u6] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/ExcelComparison.razor.rz.scp.css */
/* Full-screen optimized styling for Excel Comparison page */

/* Ensure smooth scrolling for the entire page */
.container-fluid[b-025dhijf9v] {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Step Progress Styling */
.step-progress[b-025dhijf9v] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}

.step[b-025dhijf9v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number[b-025dhijf9v] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number[b-025dhijf9v] {
    background-color: #007bff;
    transform: scale(1.1);
}

.step.completed .step-number[b-025dhijf9v] {
    background-color: #28a745;
}

.step-label[b-025dhijf9v] {
    font-size: 0.9rem;
    text-align: center;
    color: #6c757d;
    font-weight: 500;
}

.step.active .step-label[b-025dhijf9v] {
    color: #007bff;
    font-weight: bold;
}

.step.completed .step-label[b-025dhijf9v] {
    color: #28a745;
}

.step-connector[b-025dhijf9v] {
    width: 60px;
    height: 2px;
    background-color: #dee2e6;
    margin: 25px 0;
    transition: background-color 0.3s ease;
}

.step-connector.completed[b-025dhijf9v] {
    background-color: #28a745;
}

/* Card enhancements for full-screen */
.card[b-025dhijf9v] {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover[b-025dhijf9v] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Tab cards styling for Step 4 */
.tab-card:hover[b-025dhijf9v] {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

/* Table responsive enhancements */
.table-responsive[b-025dhijf9v] {
    border-radius: 0.5rem;
    overflow: hidden;
}

.table th[b-025dhijf9v] {
    border-top: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.table td[b-025dhijf9v] {
    vertical-align: middle;
}

/* File upload styling */
.form-control[type="file"][b-025dhijf9v] {
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.form-control[type="file"]:hover[b-025dhijf9v] {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.form-control[type="file"]:focus[b-025dhijf9v] {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Loading animations */
.file-upload-loading[b-025dhijf9v] {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    border: 1px solid #dee2e6;
}

/* Ensure proper spacing for mobile */
@media (max-width: 768px) {
    .container-fluid[b-025dhijf9v] {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .step-progress[b-025dhijf9v] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step-connector[b-025dhijf9v] {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .card-body[b-025dhijf9v] {
        padding: 1rem;
    }
}

/* Custom scrollbar for better full-screen experience */
[b-025dhijf9v]::-webkit-scrollbar {
    width: 8px;
}

[b-025dhijf9v]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

[b-025dhijf9v]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

[b-025dhijf9v]::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
/* /Pages/Home.razor.rz.scp.css */
.dashboard-container[b-5f8mbxjhd8] {
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.loading-container[b-5f8mbxjhd8], .error-container[b-5f8mbxjhd8] {
    text-align: center;
    padding: 80px 20px;
}

.loading-container p[b-5f8mbxjhd8], .error-container p[b-5f8mbxjhd8] {
    margin-top: 20px;
    color: #666;
    font-size: 1.1rem;
}

.error-container h2[b-5f8mbxjhd8] {
    color: #333;
    margin-bottom: 15px;
}

/* Welcome Section */
.welcome-section[b-5f8mbxjhd8] {
    margin-bottom: 30px;
}

.welcome-card[b-5f8mbxjhd8] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.welcome-card[b-5f8mbxjhd8]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.welcome-content[b-5f8mbxjhd8] {
    flex: 1;
    z-index: 2;
}

.welcome-title[b-5f8mbxjhd8] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.user-name[b-5f8mbxjhd8] {
    color: #ffd700;
}

.welcome-subtitle[b-5f8mbxjhd8] {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.welcome-icon[b-5f8mbxjhd8] {
    font-size: 4rem;
    opacity: 0.3;
    z-index: 1;
}

/* Configuration and Stats Cards */
.config-section[b-5f8mbxjhd8] {
    margin-bottom: 30px;
}

.config-card[b-5f8mbxjhd8], .stats-card[b-5f8mbxjhd8] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    height: 100%;
    transition: transform 0.2s ease-in-out;
}

.config-card:hover[b-5f8mbxjhd8], .stats-card:hover[b-5f8mbxjhd8] {
    transform: translateY(-5px);
}

.config-header[b-5f8mbxjhd8], .stats-header[b-5f8mbxjhd8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.config-header h3[b-5f8mbxjhd8], .stats-header h3[b-5f8mbxjhd8] {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.config-header i[b-5f8mbxjhd8], .stats-header i[b-5f8mbxjhd8] {
    font-size: 1.5rem;
    color: #667eea;
}

.config-content[b-5f8mbxjhd8] {
    space-y: 15px;
}

.config-item[b-5f8mbxjhd8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
}

.config-item label[b-5f8mbxjhd8] {
    font-weight: 500;
    color: #666;
}

.badge[b-5f8mbxjhd8] {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-prod[b-5f8mbxjhd8] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.badge-test[b-5f8mbxjhd8] {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
}

.badge-api[b-5f8mbxjhd8] {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
}

.badge-excel[b-5f8mbxjhd8] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.api-url[b-5f8mbxjhd8] {
    font-family: monospace;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #495057;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stats-content[b-5f8mbxjhd8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item[b-5f8mbxjhd8] {
    text-align: center;
}

.stat-value[b-5f8mbxjhd8] {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label[b-5f8mbxjhd8] {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Action Buttons */
.actions-section[b-5f8mbxjhd8] {
    margin-bottom: 30px;
}

.action-btn[b-5f8mbxjhd8] {
    width: 100%;
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover[b-5f8mbxjhd8] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-btn.primary[b-5f8mbxjhd8] {
    border-color: #667eea;
}

.action-btn.primary:hover[b-5f8mbxjhd8] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.action-btn.secondary[b-5f8mbxjhd8] {
    border-color: #6c757d;
}

.action-btn.secondary:hover[b-5f8mbxjhd8] {
    background: #6c757d;
    color: white;
}

.action-btn.logout[b-5f8mbxjhd8] {
    border-color: #dc3545;
}

.action-btn.logout:hover[b-5f8mbxjhd8] {
    background: #dc3545;
    color: white;
}

.action-icon[b-5f8mbxjhd8] {
    font-size: 2.5rem;
    opacity: 0.8;
}

.action-content h4[b-5f8mbxjhd8] {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.action-content p[b-5f8mbxjhd8] {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Account Details */
.account-details[b-5f8mbxjhd8] {
    margin-bottom: 30px;
}

.details-card[b-5f8mbxjhd8] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.details-card h3[b-5f8mbxjhd8] {
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    font-size: 1.3rem;
}

.details-grid[b-5f8mbxjhd8] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-item[b-5f8mbxjhd8] {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.detail-item strong[b-5f8mbxjhd8] {
    color: #333;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Utilities */
.spinner-border[b-5f8mbxjhd8] {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border: 0.3em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-5f8mbxjhd8 .75s linear infinite;
}

.visually-hidden[b-5f8mbxjhd8] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes spinner-border-b-5f8mbxjhd8 {
    to {
        transform: rotate(360deg);
    }
}

.btn[b-5f8mbxjhd8] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    text-decoration: none;
}

.btn-primary[b-5f8mbxjhd8] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-5f8mbxjhd8] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dashboard-container[b-5f8mbxjhd8] {
        padding: 15px;
    }
    
    .welcome-card[b-5f8mbxjhd8] {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .welcome-title[b-5f8mbxjhd8] {
        font-size: 2rem;
    }
    
    .welcome-subtitle[b-5f8mbxjhd8] {
        font-size: 1rem;
    }
    
    .welcome-icon[b-5f8mbxjhd8] {
        font-size: 2.5rem;
    }
    
    .stats-content[b-5f8mbxjhd8] {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .action-btn[b-5f8mbxjhd8] {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .action-icon[b-5f8mbxjhd8] {
        font-size: 2rem;
    }
    
    .details-grid[b-5f8mbxjhd8] {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .welcome-card[b-5f8mbxjhd8] {
        padding: 20px;
    }
    
    .welcome-title[b-5f8mbxjhd8] {
        font-size: 1.8rem;
    }
    
    .config-card[b-5f8mbxjhd8], .stats-card[b-5f8mbxjhd8], .details-card[b-5f8mbxjhd8] {
        padding: 20px;
    }
    
    .action-btn[b-5f8mbxjhd8] {
        padding: 15px;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.login-container[b-60wcaue8lq] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-card[b-60wcaue8lq] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-header[b-60wcaue8lq] {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2[b-60wcaue8lq] {
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.login-header p[b-60wcaue8lq] {
    color: #666;
    margin: 0;
}

.login-form[b-60wcaue8lq] {
    width: 100%;
}

.form-group[b-60wcaue8lq] {
    margin-bottom: 20px;
}

.form-group label[b-60wcaue8lq] {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}

.form-control[b-60wcaue8lq] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-60wcaue8lq] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions[b-60wcaue8lq] {
    margin-bottom: 20px;
}

.btn[b-60wcaue8lq] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary[b-60wcaue8lq] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-60wcaue8lq] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn:disabled[b-60wcaue8lq] {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-footer[b-60wcaue8lq] {
    text-align: center;
    margin-top: 20px;
}

.login-footer p[b-60wcaue8lq] {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.link-primary[b-60wcaue8lq] {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.link-primary:hover[b-60wcaue8lq] {
    color: #5a67d8;
    text-decoration: underline;
}

.link-secondary[b-60wcaue8lq] {
    color: #999;
    text-decoration: none;
}

.link-secondary:hover[b-60wcaue8lq] {
    color: #666;
    text-decoration: underline;
}

.alert[b-60wcaue8lq] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-60wcaue8lq] {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.validation-message[b-60wcaue8lq] {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

.spinner-border-sm[b-60wcaue8lq] {
    width: 1rem;
    height: 1rem;
    border-width: 0.1em;
}

.spinner-border[b-60wcaue8lq] {
    display: inline-block;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-60wcaue8lq .75s linear infinite;
}

@keyframes spinner-border-b-60wcaue8lq {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .login-container[b-60wcaue8lq] {
        padding: 10px;
    }
    
    .login-card[b-60wcaue8lq] {
        padding: 30px 20px;
    }
}
/* /Pages/Profile.razor.rz.scp.css */
.profile-container[b-q388rnzujg] {
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.profile-card[b-q388rnzujg] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
}

.profile-header[b-q388rnzujg] {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.profile-header h2[b-q388rnzujg] {
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.profile-header p[b-q388rnzujg] {
    color: #666;
    margin: 0;
}

.loading-container[b-q388rnzujg], .error-container[b-q388rnzujg] {
    text-align: center;
    padding: 60px 20px;
}

.loading-container p[b-q388rnzujg], .error-container p[b-q388rnzujg] {
    margin-top: 20px;
    color: #666;
}

.profile-form[b-q388rnzujg] {
    width: 100%;
}

.section[b-q388rnzujg] {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.section h4[b-q388rnzujg] {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section h4[b-q388rnzujg]:before {
    content: '▶';
    color: #667eea;
    font-size: 0.8rem;
}

.form-row[b-q388rnzujg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group[b-q388rnzujg] {
    margin-bottom: 20px;
}

.form-group label[b-q388rnzujg] {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}

.form-control[b-q388rnzujg] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.15s ease-in-out;
    box-sizing: border-box;
    background: white;
}

.form-control:focus[b-q388rnzujg] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control[readonly][b-q388rnzujg] {
    background-color: #f8f9fa;
    color: #6c757d;
}

.form-text[b-q388rnzujg] {
    font-size: 12px;
    margin-top: 4px;
}

.text-muted[b-q388rnzujg] {
    color: #6c757d;
}

textarea.form-control[b-q388rnzujg] {
    resize: vertical;
    min-height: 80px;
}

select.form-control[b-q388rnzujg] {
    cursor: pointer;
}

.stats-grid[b-q388rnzujg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.stat-card[b-q388rnzujg] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.stat-card:hover[b-q388rnzujg] {
    transform: translateY(-2px);
}

.stat-value[b-q388rnzujg] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label[b-q388rnzujg] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.form-actions[b-q388rnzujg] {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn[b-q388rnzujg] {
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary[b-q388rnzujg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-q388rnzujg] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-q388rnzujg] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled)[b-q388rnzujg] {
    background: #5a6268;
    transform: translateY(-1px);
}

.btn:disabled[b-q388rnzujg] {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert[b-q388rnzujg] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-q388rnzujg] {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-success[b-q388rnzujg] {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
}

.spinner-border[b-q388rnzujg] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-q388rnzujg .75s linear infinite;
}

.spinner-border-sm[b-q388rnzujg] {
    width: 1rem;
    height: 1rem;
    border-width: 0.1em;
}

.visually-hidden[b-q388rnzujg] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes spinner-border-b-q388rnzujg {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .profile-container[b-q388rnzujg] {
        padding: 20px 10px;
    }
    
    .profile-card[b-q388rnzujg] {
        padding: 25px 20px;
        max-height: 95vh;
    }
    
    .form-row[b-q388rnzujg] {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .stats-grid[b-q388rnzujg] {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions[b-q388rnzujg] {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .profile-container[b-q388rnzujg] {
        padding: 10px;
    }
    
    .profile-card[b-q388rnzujg] {
        padding: 20px 15px;
        border-radius: 8px;
        max-height: 98vh;
    }
    
    .section[b-q388rnzujg] {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .profile-header h2[b-q388rnzujg] {
        font-size: 1.5rem;
    }
    
    .section h4[b-q388rnzujg] {
        font-size: 1rem;
    }
    
    .stat-card[b-q388rnzujg] {
        padding: 15px;
    }
    
    .stat-value[b-q388rnzujg] {
        font-size: 1.3rem;
    }
}
/* /Pages/Register.razor.rz.scp.css */
.register-container[b-2fdv87dg0i] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
}

.register-card[b-2fdv87dg0i] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.register-header[b-2fdv87dg0i] {
    text-align: center;
    margin-bottom: 30px;
}

.register-header h2[b-2fdv87dg0i] {
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.register-header p[b-2fdv87dg0i] {
    color: #666;
    margin: 0;
}

.register-form[b-2fdv87dg0i] {
    width: 100%;
}

.section[b-2fdv87dg0i] {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.section:last-of-type[b-2fdv87dg0i] {
    border-bottom: none;
}

.section h4[b-2fdv87dg0i] {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.optional[b-2fdv87dg0i] {
    color: #999;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-row[b-2fdv87dg0i] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group[b-2fdv87dg0i] {
    margin-bottom: 20px;
}

.form-group label[b-2fdv87dg0i] {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}

.form-control[b-2fdv87dg0i] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.form-control:focus[b-2fdv87dg0i] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea.form-control[b-2fdv87dg0i] {
    resize: vertical;
    min-height: 80px;
}

select.form-control[b-2fdv87dg0i] {
    cursor: pointer;
}

.form-actions[b-2fdv87dg0i] {
    margin-bottom: 20px;
    padding-top: 10px;
}

.btn[b-2fdv87dg0i] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary[b-2fdv87dg0i] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-2fdv87dg0i] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn:disabled[b-2fdv87dg0i] {
    opacity: 0.6;
    cursor: not-allowed;
}

.register-footer[b-2fdv87dg0i] {
    text-align: center;
    margin-top: 20px;
}

.register-footer p[b-2fdv87dg0i] {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.link-primary[b-2fdv87dg0i] {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.link-primary:hover[b-2fdv87dg0i] {
    color: #5a67d8;
    text-decoration: underline;
}

.alert[b-2fdv87dg0i] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-2fdv87dg0i] {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-success[b-2fdv87dg0i] {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
}

.validation-message[b-2fdv87dg0i] {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

.spinner-border-sm[b-2fdv87dg0i] {
    width: 1rem;
    height: 1rem;
    border-width: 0.1em;
}

.spinner-border[b-2fdv87dg0i] {
    display: inline-block;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-2fdv87dg0i .75s linear infinite;
}

@keyframes spinner-border-b-2fdv87dg0i {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .register-container[b-2fdv87dg0i] {
        padding: 20px 10px;
    }
    
    .register-card[b-2fdv87dg0i] {
        padding: 30px 20px;
        max-height: 95vh;
    }
    
    .form-row[b-2fdv87dg0i] {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .register-container[b-2fdv87dg0i] {
        padding: 10px;
    }
    
    .register-card[b-2fdv87dg0i] {
        padding: 20px 15px;
        border-radius: 8px;
        max-height: 98vh;
    }
    
    .register-header h2[b-2fdv87dg0i] {
        font-size: 1.5rem;
    }
    
    .section h4[b-2fdv87dg0i] {
        font-size: 1rem;
    }
}
