/* Basic styling for the Video Downloader form */
.video-downloader-container {
    max-width: 640px;
    margin: 24px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.video-downloader-container h2 { margin-top: 0; color: #222; }
.form-group { margin-bottom: 15px; }
.form-group label { display:block;margin-bottom:6px;font-weight:600; }
.form-group input { width:100%;padding:10px;border:1px solid #ccc;border-radius:6px;font-size:14px; }
.button { background:#0073aa;color:#fff;padding:12px 24px;border:none;border-radius:6px;cursor:pointer;font-size:16px; }
.button:hover { background:#005a87; }
.progress-bar { width:100%;height:18px;background:#eee;border-radius:9px;overflow:hidden;margin:10px 0; }
.progress { height:100%;background:#0073aa;width:0%;transition:width .3s ease; }
.status-message { text-align:center;font-weight:600;color:#333; }
.success { color:#46b450; }
.error { color:#dc3232; }
.disclaimer { font-size:12px;color:#666;margin-top:8px; }
