.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; }

            .log-container { background: #0f172a; color: #38bdf8; padding: 15px; border-radius: 8px; font-family: monospace; font-size: 0.85rem; max-height: 350px; overflow-y: auto; margin-bottom: 20px; white-space: pre-wrap; word-break: break-all; }
            .log-success { color: #4ade80; }
            .log-error { color: #f87171; }
            .log-warning { color: #facc15; }

            .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;
            }
           
        }