/* Extract Audio - Reusing base styles */
@import url('video-compressor.css');

.tool-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tool-header::before {
    content: '🎵';
}

.format-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.format-btn {
    padding: 16px 12px;
    border-radius: 10px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s;
    text-align: center;
}

.format-btn:hover {
    background: #d1fae5;
}

.format-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: transparent;
}

.format-btn small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-top: 4px;
}

.audio-preview {
    margin-bottom: 20px;
}

.audio-preview label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
}

.audio-info {
    text-align: center;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #374151;
}

.audio-info .separator {
    margin: 0 10px;
    opacity: 0.5;
}

@media (max-width: 520px) {
    .format-buttons {
        grid-template-columns: 1fr;
    }
}
