
.upload-area {
    border: 2px dashed #17a2b8;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #138496;
    background-color: #f8f9fa;
}

.upload-area.dragover {
    border-color: #28a745;
    background-color: #d4edda;
}

.csv-preview {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.conversion-settings {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.conversion-result {
    background-color: #d4edda;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
}

#previewTable {
    background-color: white;
    font-size: 0.875rem;
}

#previewTable th {
    background-color: #e9ecef !important;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

#previewTable td {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-responsive {
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .conversion-settings .row {
        flex-direction: column;
    }
    
    #previewTable {
        font-size: 0.75rem;
    }
    
    #previewTable td {
        max-width: 100px;
    }
}
