/* Compressor Window Styles */
.compressor-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    background-color: #1e1e1e;
    color: #f0f0f0;
    align-items: center; /* Center items horizontally */
}

.compressor-drop-area {
    width: 90%;
    height: 150px;
    border: 2px dashed #0078d4;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.1em;
    color: #aaa;
    cursor: pointer;
    background-color: #282828;
    transition: background-color 0.2s, border-color 0.2s;
}

.compressor-drop-area:hover,
.compressor-drop-area.drag-over {
    background-color: #333;
    border-color: #005a9e;
}

.compressor-options {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compressor-options label {
    font-weight: bold;
}

.compressor-options input[type="range"] {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 8px;
    background: #555;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.compressor-options input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0078d4;
    cursor: pointer;
    border: 2px solid #0078d4;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.compressor-options input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0078d4;
    cursor: pointer;
    border: 2px solid #0078d4;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

#compressSelectedButton {
    padding: 10px 25px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

#compressSelectedButton:hover {
    background-color: #005a9e;
}

.compressor-output {
    width: 90%;
    max-height: 200px;
    background-color: #282828;
    border-radius: 8px;
    padding: 15px;
    overflow-y: auto;
    font-size: 0.9em;
    color: #ccc;
    border: 1px solid #3a3a3a;
}