.dropzone-container {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background-color: #f8fafc;
    padding: 45px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dropzone-container:hover, .dropzone-container.dragover {
    border-color: #3b82f6 !important;
    background-color: #eff6ff !important;
}
.dropzone-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: inline-block;
}
.compressor-controls {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}
.comparison-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    margin-top: 20px;
}

.progress-container {
    background-color: #f1f5f9;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #3b82f6;
    border-radius: 6px;
    transition: width 0.2s ease;
}
