.customer-import-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.customer-import-wrapper .import-result{
    background: #f0fff4;
    color: #276749;
    padding: 20px;
    border: 1px solid #c6f6d5;
    padding: 5px;
}
.customer-import-wrapper .import-result .import-result--errors{
    background: #fff5f5;
    border: 1px solid #e2e8f0;
    padding: 10px;
}

.customer-import-wrapper .import-result .import-result--errors .errors-list{
    font-size: 0.9rem;
    max-height: 200px;
    overflow-y: auto;
}
.customer-import-wrapper .import-errors{
    color: red;
    padding: 10px;
    border: 1px solid red;
}
.customer-import-wrapper .customer-import-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    border: 1px dashed #cbd5e0;
    padding: 40px;
    border-radius: 8px;
}
.customer-import-wrapper .customer-import-form label{
    display: flex;
    flex-direction: column;
    font-weight: bold;
    gap: 5px;
    width: 100%;
}
.customer-import-wrapper .customer-import-form input{
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    width: 100%;
}
.customer-import-wrapper .customer-import-form select{
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    width: 100%;
}

.import-instructions {
    background: #f7fafc;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    border-radius: 4px;
}

.import-instructions h4 {
    margin-top: 0;
    color: #2d3748;
}

.import-instructions ul {
    font-size: 0.9em;
    padding-left: 20px;
    line-height: 1.5;
}

.example-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.85em;
    background: #fff;
}

.example-table th, .example-table td {
    border: 1px solid #cbd5e0;
    padding: 8px;
    text-align: left;
}

.example-table th {
    background: #edf2f7;
}