.import-card {
    width: 100%;
    max-width: 1400px;
}

.import-summary {
    display:flex;
    gap:24px;
    margin:12px 0;
    flex-wrap:wrap;
}

.import-errors {
    margin:12px 0;
    padding:12px;
    border:1px solid #dc3545;
    border-radius:8px;
    max-height:200px;
    overflow:auto;
}

.import-errors ul {
    margin:0;
    padding-left:20px;
}

.import-actions {
    margin-top:16px;
    display:flex;
    gap:8px;
    justify-content:flex-end;
}

.status-ok {
    color:#16a34a;
    font-weight:600;
}

.status-error {
    color:#dc2626;
    font-weight:600;
}

.import-upload {
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:12px;
}

.import-upload-actions {
    display:flex;
    justify-content:flex-start;
}


.import-wizard {

    position: fixed;

    inset: 0;

    background: rgba(
        0,
        0,
        0,
        0.4
    );

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 9999;

    padding: 16px;

}

.import-card {

    width: 100%;

    max-width: 1400px;

    max-height: 90vh;

    overflow: auto;

}