/* Custom styles based on DouyinDownloader theme, adapted for Rednote */
body {
    background: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.card {
    border: none;
    border-radius: 12px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    /* Red theme border */
    border-bottom: 3px solid #dc3545; 
    padding-bottom: 8px;
}

.form-control {
    border-radius: 8px;
    font-size: 0.9rem;
}

.form-label {
    color: #343a40;
}

/* Menggunakan style Bootstrap default (btn-danger) untuk tombol 
   di dalam script.js, sehingga style .file-item tidak diperlukan 
   karena kita merender hasil sebagai Bootstrap Cards.
*/

/* Responsive adjustments */
@media (max-width: 576px) {
    /* Style untuk card hasil di mobile */
    .card-body .btn-danger {
        width: 100%;
        text-align: center;
    }
}