.container-image-compress {
    padding: 2rem;
    background-color: var(--card-clr);
    border-radius: 10px;
}

h1 {
    color: var(--text-clr);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.upload-section {
    margin-bottom: 2rem;
}

.upload-section input {
    display: none;
}

.upload-section label {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #3498db;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-section label:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.controls {
    margin-bottom: 2rem;
}

.controls label {
    font-weight: 500;
    margin-right: 1rem;
}

.controls input {
    width: 200px;
}

.file-list {
    margin-bottom: 2rem;
}

.file-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.file-info {
    flex: 1;
}

.file-info div {
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #3498db;
    transition: width 0.3s ease;
}

.status {
    min-width: 100px;
    text-align: center;
    font-weight: 500;
}

button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #27ae60;
    color: white;
    margin-right: 1rem;
}

button:hover {
    background: #219a52;
    transform: translateY(-1px);
}

button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.download-btn {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
}