/* Beta Request Modal Custom Styling */
.modal-overlay#beta-request-modal .modal-dialog {
    max-width: 520px;
}

.modal-overlay#beta-request-modal .modal-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.modal-overlay#beta-request-modal .modal-message {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Softer input styling to match site aesthetic */
.modal-overlay#beta-request-modal .modal-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-overlay#beta-request-modal .modal-input::placeholder {
    color: #94a3b8;
}

.modal-overlay#beta-request-modal .modal-input:focus {
    outline: none;
    background: white;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.modal-overlay#beta-request-modal .modal-input:hover:not(:focus) {
    border-color: #cbd5e1;
    background: white;
}

/* Updated button styling to match site */
.modal-overlay#beta-request-modal .modal-button-primary {
    background: #0f172a;
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.modal-overlay#beta-request-modal .modal-button-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.modal-overlay#beta-request-modal .modal-button-primary:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.modal-overlay#beta-request-modal .modal-button-secondary {
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    padding: 14px 32px;
}

.modal-overlay#beta-request-modal .modal-button-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Success message styling */
#beta-success {
    padding: 32px 0;
}

#beta-success .modal-icon.success {
    width: 72px;
    height: 72px;
    font-size: 36px;
    background: linear-gradient(135deg, #6366f1 0%, #9333ea 100%);
    margin-bottom: 24px;
}

#beta-success .success-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

#beta-success .success-message {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Error message styling */
#beta-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
}