.url-input-container { display: flex; gap: 10px; margin-bottom: 20px; }
            .url-input-container input { flex: 1; padding: 12px; border-radius: 8px; border: 1px solid #cbd5e1; font-size: 0.9rem; background: #fff; }

            .video-preview-container { text-align: center; margin-bottom: 15px; background: #000; border-radius: 8px; overflow: hidden; position: relative; }
            .video-preview-container video { width: 100%; max-height: 450px; display: block; object-fit: contain; }

            .stream-info { font-size: 0.85rem; color: #4b5563; background: #f8fafc; border: 1px solid #e2e8f0; padding: 12px; border-radius: 8px; margin-bottom: 20px; }
            .stream-info span { font-weight: 600; color: #1e293b; }

            .controls { display: flex; gap: 10px; }
            .btn { flex: 1; padding: 12px; border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background-color 0.2s; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
            .btn-primary { background-color: var(--primary); color: white; }
            .btn-primary:hover { background-color: var(--primary-hover); }
            .btn-secondary { background-color: #e5e7eb; color: #374151; }
            .btn-secondary:hover { background-color: #d1d5db; }

             @media (max-width: 480px) {
            .btn-primary {
            max-height: 50px;
            }
           
        }