/* /Components/ImageUploader.razor.rz.scp.css */
.image-uploader-container[b-2nve6tltu0] {
    width: 100%;
}

.upload-zone[b-2nve6tltu0] {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--background);
    position: relative;
}

.upload-zone:hover[b-2nve6tltu0] {
    border-color: var(--primary);
    background: #EEF2FF;
}

.upload-zone.drag-over[b-2nve6tltu0] {
    border-color: var(--primary);
    border-style: solid;
    background: #EEF2FF;
    transform: scale(1.02);
}

.upload-icon[b-2nve6tltu0] {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-md);
}

.upload-title[b-2nve6tltu0] {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.upload-subtitle[b-2nve6tltu0] {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.upload-btn[b-2nve6tltu0] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.upload-btn:hover[b-2nve6tltu0] {
    transform: translateY(-1px);
}

.upload-formats[b-2nve6tltu0] {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Image Preview */
.image-preview-container[b-2nve6tltu0] {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--success);
}

.preview-image[b-2nve6tltu0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay[b-2nve6tltu0] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-info[b-2nve6tltu0] {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.image-actions[b-2nve6tltu0] {
    display: flex;
    gap: 8px;
}

/* Guidelines */
.guidelines[b-2nve6tltu0] {
    margin-top: 20px;
}

.guidelines-title[b-2nve6tltu0] {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guidelines-list[b-2nve6tltu0] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li[b-2nve6tltu0] {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.guidelines-list li[b-2nve6tltu0]::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}
/* /Components/LoadingOverlay.razor.rz.scp.css */
.processing-overlay[b-mxdua7uokb] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.processing-overlay.active[b-mxdua7uokb] {
    opacity: 1;
    visibility: visible;
}

.processing-modal[b-mxdua7uokb] {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-xl);
}

.spinner[b-mxdua7uokb] {
    width: 64px;
    height: 64px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

.processing-title[b-mxdua7uokb] {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.processing-subtitle[b-mxdua7uokb] {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.progress-bar[b-mxdua7uokb] {
    height: 8px;
    background: var(--background);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-mxdua7uokb] {
    height: 100%;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    border-radius: 4px;
    width: 65%;
    animation: progress 2s ease-in-out infinite;
}

.processing-time[b-mxdua7uokb] {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}
/* /Components/ResultGallery.razor.rz.scp.css */
.result-empty[b-1gsbh6hz1d] {
    text-align: center;
    padding: 60px 24px;
}

.result-icon[b-1gsbh6hz1d] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.result-title[b-1gsbh6hz1d] {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.result-subtitle[b-1gsbh6hz1d] {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.5;
}

.result-gallery[b-1gsbh6hz1d] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.result-item[b-1gsbh6hz1d] {
    position: relative;
}

.result-image-container[b-1gsbh6hz1d] {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.result-image[b-1gsbh6hz1d] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.result-badge[b-1gsbh6hz1d] {
    position: absolute;
    top: 12px;
    right: 12px;
}

.result-badge .badge[b-1gsbh6hz1d] {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
}

.result-actions[b-1gsbh6hz1d] {
    display: flex;
    gap: 12px;
}

.result-actions button[b-1gsbh6hz1d] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Header */
.app-header[b-yrudpnifcx] {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content[b-yrudpnifcx] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo[b-yrudpnifcx] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon[b-yrudpnifcx] {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.logo-text[b-yrudpnifcx] {
    font-weight: 700;
    font-size: 22px;
}

.logo-badge[b-yrudpnifcx] {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
}

.header-actions[b-yrudpnifcx] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon[b-yrudpnifcx] {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.btn-icon:hover[b-yrudpnifcx] {
    background: var(--background);
    color: var(--text-primary);
}

/* Main Content */
.app-main[b-yrudpnifcx] {
    min-height: calc(100vh - 160px);
}

/* Footer */
.app-footer[b-yrudpnifcx] {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

.app-footer a[b-yrudpnifcx] {
    color: var(--primary);
    text-decoration: none;
}

.app-footer a:hover[b-yrudpnifcx] {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .logo-text[b-yrudpnifcx] {
        font-size: 16px;
    }

    .logo-badge[b-yrudpnifcx] {
        display: none;
    }

    .app-header[b-yrudpnifcx] {
        padding: 12px 16px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-wrh9psjy7w] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-wrh9psjy7w] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-wrh9psjy7w] {
    font-size: 1.1rem;
}

.bi[b-wrh9psjy7w] {
    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-wrh9psjy7w] {
    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-wrh9psjy7w] {
    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-wrh9psjy7w] {
    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-wrh9psjy7w] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-wrh9psjy7w] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-wrh9psjy7w] {
        padding-bottom: 1rem;
    }

    .nav-item[b-wrh9psjy7w]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-wrh9psjy7w]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-wrh9psjy7w]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wrh9psjy7w] {
        display: none;
    }

    .collapse[b-wrh9psjy7w] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-wrh9psjy7w] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/TryOn.razor.rz.scp.css */
.tryon-page[b-uxcyl2lhxd] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}

.page-header[b-uxcyl2lhxd] {
    margin-bottom: 40px;
}

.page-title[b-uxcyl2lhxd] {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-subtitle[b-uxcyl2lhxd] {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.card[b-uxcyl2lhxd] {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card:hover[b-uxcyl2lhxd] {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header[b-uxcyl2lhxd] {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.card-icon[b-uxcyl2lhxd] {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.person-icon[b-uxcyl2lhxd] {
    background: #EEF2FF;
}

.garment-icon[b-uxcyl2lhxd] {
    background: #FDF2F8;
}

.result-icon[b-uxcyl2lhxd] {
    background: #D1FAE5;
}

.card-title[b-uxcyl2lhxd] {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-step[b-uxcyl2lhxd] {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.card-body[b-uxcyl2lhxd] {
    padding: 24px;
}

/* Generate Button Section */
.generate-section[b-uxcyl2lhxd] {
    text-align: center;
    padding: 32px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.btn-generate[b-uxcyl2lhxd] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-generate:hover:not(:disabled)[b-uxcyl2lhxd] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-generate:disabled[b-uxcyl2lhxd] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.generate-hint[b-uxcyl2lhxd] {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title[b-uxcyl2lhxd] {
        font-size: 28px;
    }

    .page-subtitle[b-uxcyl2lhxd] {
        font-size: 16px;
    }

    .btn-generate[b-uxcyl2lhxd] {
        padding: 14px 32px;
        font-size: 16px;
    }
}
