/* Audio Reverser Custom Styles */

/* Audio Preview Wrapper */
.audio-preview-wrapper {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
}

.audio-preview {
    width: 100%;
    max-width: 100%;
}

[data-bs-theme="dark"] .audio-preview-wrapper {
    background: #212529;
    border-color: #495057;
}

/* Waveform containers (for future enhancement) */
.waveform-container {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-bs-theme="dark"] .waveform-container {
    background: #212529;
    border-color: #495057;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .audio-preview-wrapper {
        padding: 0.75rem;
    }

    .card-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .audio-preview-wrapper {
        padding: 0.5rem;
    }

    .card-header h5 {
        font-size: 1rem;
    }

    .form-label {
        font-size: 0.9rem;
    }
}
