/* /Components/Upload/FileList.razor.rz.scp.css */
.file-list[b-21mwwujmxv] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-list-item[b-21mwwujmxv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.file-list-item:not(:last-child)[b-21mwwujmxv] {
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.file-icon[b-21mwwujmxv] {
    color: var(--mud-palette-primary);
    flex-shrink: 0;
}

.file-path[b-21mwwujmxv] {
    color: var(--mud-palette-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.file-name[b-21mwwujmxv] {
    font-weight: 500;
    flex-shrink: 0;
}

.file-size[b-21mwwujmxv] {
    color: var(--mud-palette-text-secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
    text-align: right;
    min-width: 4rem;
}
/* /Layout/WizardLayout.razor.rz.scp.css */
/* WizardLayout.razor.css */

.wizard-layout[b-ehxvj39tq3] {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: inherit;
}

.wizard-header[b-ehxvj39tq3] {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 2rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.wizard-header[b-ehxvj39tq3]::-webkit-scrollbar {
    display: none;
}

.wizard-step-item[b-ehxvj39tq3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    cursor: default;
    position: relative;
}

.wizard-step-top[b-ehxvj39tq3] {
    display: flex;
    align-items: center;
    width: 100%;
}

.wizard-step-circle[b-ehxvj39tq3] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #ffffff;
    color: #9ca3af;
    font-size: 0.8125rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 200ms ease;
    z-index: 1;
}

.wizard-step-circle svg[b-ehxvj39tq3] {
    width: 1rem;
    height: 1rem;
}

.wizard-step-item.active .wizard-step-circle[b-ehxvj39tq3] {
    border-color: #005f73;
    background: #005f73;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 95, 115, 0.15);
}

.wizard-step-item.completed .wizard-step-circle[b-ehxvj39tq3] {
    border-color: #005f73;
    background: #005f73;
    color: #ffffff;
}

.wizard-step-connector[b-ehxvj39tq3] {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    transition: background 300ms ease;
}

.wizard-step-connector.completed[b-ehxvj39tq3] {
    background: #005f73;
}

.wizard-step-label[b-ehxvj39tq3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
    min-width: 0;
    max-width: 100%;
    padding: 0 0.25rem;
}

.wizard-step-title[b-ehxvj39tq3] {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.2;
    transition: color 200ms ease;
}

.wizard-step-subtitle[b-ehxvj39tq3] {
    font-size: 0.875rem;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-top: 0.125rem;
}

.wizard-step-item.active .wizard-step-title[b-ehxvj39tq3] {
    color: #005f73;
}

.wizard-step-item.completed .wizard-step-title[b-ehxvj39tq3] {
    color: #374151;
}

.wizard-content[b-ehxvj39tq3] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.75rem 2rem;
    animation: fadeSlideIn-b-ehxvj39tq3 200ms ease forwards;
}

@keyframes fadeSlideIn-b-ehxvj39tq3 {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-ehxvj39tq3] .wizard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.wizard-footer-left[b-ehxvj39tq3] {
    flex: 1;
}

.wizard-footer-left[b-ehxvj39tq3],
.wizard-footer-right[b-ehxvj39tq3] {
    display: flex;
    gap: 0.5rem;
}

.wizard-btn[b-ehxvj39tq3] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 180ms ease;
    line-height: 1;
}

.wizard-btn svg[b-ehxvj39tq3] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.wizard-btn:disabled[b-ehxvj39tq3] {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-btn-primary[b-ehxvj39tq3] {
    background: #005f73;
    color: #ffffff;
    border-color: #005f73;
}

.wizard-btn-primary:hover:not(:disabled)[b-ehxvj39tq3] {
    background: #004d5e;
    border-color: #004d5e;
}

.wizard-btn-secondary[b-ehxvj39tq3] {
    background: #ffffff;
    color: #374151;
    border-color: #d1d5db;
}

.wizard-btn-secondary:hover:not(:disabled)[b-ehxvj39tq3] {
    background: #f9fafb;
    border-color: #9ca3af;
}

@media (max-width: 640px) {
    .wizard-header[b-ehxvj39tq3] {
        padding: 1rem 1rem 0;
    }

    .wizard-step-label[b-ehxvj39tq3] {
        display: none;
    }

    .wizard-step-item[b-ehxvj39tq3] {
        flex: none;
    }

    .wizard-content[b-ehxvj39tq3] {
        padding: 1.25rem 1rem;
    }

    .wizard-footer[b-ehxvj39tq3] {
        padding: 0.875rem 1rem 1rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Home.razor.css */

.landing-wrapper[b-85bevez2yn] {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.landing-title[b-85bevez2yn] {
    font-weight: 700;
    line-height: 1.3;
}

.landing-description[b-85bevez2yn] {
    color: #6b7280;
    max-width: 52ch;
}
/* /Pages/Wizard/Step2.razor.rz.scp.css */
.file-list-header[b-tmngyz38rd] {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.file-list-container[b-tmngyz38rd] {
    flex: 1;
    min-height: 0;
    max-height: calc(12 * 1.75rem);
    overflow-y: auto;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
}

.file-list-empty[b-tmngyz38rd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.5rem;
    color: var(--mud-palette-secondary);
}

.upload-button-container[b-tmngyz38rd] {
    margin-top: 1rem;
}
/* /Pages/Wizard/Step3.razor.rz.scp.css */
.step3-layout[b-iiihwyhro1] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.summary-section[b-iiihwyhro1] {
    background: var(--mud-palette-background);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 8px;
    padding: 1.25rem;
}

.summary-section-header[b-iiihwyhro1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.summary-section-header.clickable[b-iiihwyhro1] {
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    margin-bottom: 0;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: background-color 0.2s ease;
}

.summary-section-header.clickable:hover[b-iiihwyhro1] {
    background-color: var(--mud-palette-background-grey);
}

.collapse-icon[b-iiihwyhro1] {
    margin-left: auto;
}

.summary-section-header MudIcon[b-iiihwyhro1] {
    color: var(--mud-palette-primary);
}

.summary-section-header Typography[b-iiihwyhro1] {
    font-weight: 600;
    color: var(--mud-palette-text-primary);
}

.detail-row[b-iiihwyhro1] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.4rem 0;
}

.detail-row:not(:last-child)[b-iiihwyhro1] {
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.detail-icon[b-iiihwyhro1] {
    color: var(--mud-palette-secondary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.detail-content[b-iiihwyhro1] {
    flex: 1;
    min-width: 0;
}

.detail-label[b-iiihwyhro1] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 0.15rem;
}

.detail-value[b-iiihwyhro1] {
    font-size: 0.9375rem;
    color: var(--mud-palette-text-primary);
    word-break: break-word;
}

.detail-value.empty[b-iiihwyhro1] {
    font-style: italic;
    color: var(--mud-palette-text-disabled);
}

.file-list-container[b-iiihwyhro1] {
    flex: 1;
    min-height: 0;
    max-height: calc(12 * 1.75rem);
    overflow-y: auto;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.files-count-badge[b-iiihwyhro1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    border-radius: 50%;
    min-width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 0.4rem;
    margin-left: auto;
}
/* /Pages/Wizard/Step4.razor.rz.scp.css */
.confirmation-container[b-m12rhf9rpa] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.confirmation-content[b-m12rhf9rpa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    animation: fadeSlideIn-b-m12rhf9rpa 400ms ease forwards;
}

.check-circle[b-m12rhf9rpa] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #005f73;
    color: #ffffff;
    box-shadow: 0 0 0 12px rgba(0, 95, 115, 0.1), 0 0 0 24px rgba(0, 95, 115, 0.05);
    animation: scaleIn-b-m12rhf9rpa 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.check-circle svg[b-m12rhf9rpa] {
    width: 2.5rem;
    height: 2.5rem;
    animation: drawCheck-b-m12rhf9rpa 400ms ease forwards 200ms;
}

.confirmation-text[b-m12rhf9rpa] {
    color: #374151;
    font-weight: 500;
}

@keyframes scaleIn-b-m12rhf9rpa {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawCheck-b-m12rhf9rpa {
    from {
        stroke-dasharray: 30;
        stroke-dashoffset: 30;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeSlideIn-b-m12rhf9rpa {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
