/* ==================== PARTNER RECRUITER - SCHEDULER ==================== */

/* ===== CTA SECTION - MEETING SCHEDULER ===== */
.landing-cta {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #e0e7ff 50%, var(--bg-body) 100%);
}

.scheduler-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.scheduler-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.scheduler-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.scheduler-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.scheduler-header p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.scheduler-header .cta-inviter {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-body);
    border-radius: var(--radius-full);
}

.inviter-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
}

.inviter-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.inviter-label {
    font-size: 11px;
    color: var(--text-muted);
}

.inviter-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Scheduler Form */
.scheduler-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.scheduler-form .btn-schedule {
    align-self: center;
    margin-top: var(--spacing-md);
}

.scheduler-step {
    padding: var(--spacing-md);
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.step-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.step-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Method Selector */
.contact-method-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.method-option {
    cursor: pointer;
}

.method-option input {
    display: none;
}

.method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.method-option:hover .method-card {
    border-color: var(--primary-border);
    background: var(--primary-bg);
}

.method-option.active .method-card,
.method-option input:checked + .method-card {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.method-icon {
    font-size: 28px;
}

.method-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.method-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Date Selector */
.date-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.date-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.date-nav:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.date-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.date-list {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-xs) 0;
    flex: 1;
    scrollbar-width: none;
}

.date-list::-webkit-scrollbar {
    display: none;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 70px;
    flex-shrink: 0;
}

.date-item:hover {
    border-color: var(--primary-border);
    background: var(--primary-bg);
}

.date-item.active {
    border-color: var(--primary);
    background: var(--primary);
}

.date-item.active .date-day,
.date-item.active .date-weekday,
.date-item.active .date-month {
    color: white;
}

.date-weekday {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.date-day {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.date-month {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-sm);
}

.time-slot {
    padding: var(--spacing-sm) var(--spacing-xs);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--primary-border);
    background: var(--primary-bg);
}

.time-slot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.time-slot:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--bg-body);
}

/* Contact Fields */
.contact-fields {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-fields .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-fields .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-fields label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-fields input {
    padding: 10px var(--spacing-md);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-card);
    transition: all var(--transition-fast);
}

.contact-fields input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

/* Scheduler Summary */
.scheduler-summary {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--success-bg) 0%, #dcfce7 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--success-border);
    opacity: 0.5;
    transition: opacity var(--transition-normal);
}

.scheduler-summary.ready {
    opacity: 1;
}

.summary-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.summary-icon {
    font-size: 32px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-label {
    font-size: 12px;
    color: var(--text-muted);
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-method {
    font-size: 13px;
    color: var(--success);
    font-weight: 500;
}

/* Schedule Button */
.btn-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 16px var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    margin: 24px auto 0 auto; /* Wyśrodkowanie i margines górny */
}

.btn-schedule:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-schedule:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-schedule .btn-icon {
    font-size: 18px;
}

.btn-schedule .btn-arrow {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.btn-schedule:hover:not(:disabled) .btn-arrow {
    transform: translateX(4px);
}

/* Modal Meeting Details */
.modal-meeting-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-body);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.modal-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.modal-detail-icon {
    font-size: 18px;
}

.modal-detail-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.modal-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
}

/* ===== FOOTER ===== */
.landing-footer {
    padding: var(--spacing-lg) 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo-icon {
    font-size: 20px;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-md);
}

.modal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.modal-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.modal-inviter {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.modal-inviter strong {
    color: var(--primary);
}

.btn-modal-close {
    padding: 12px var(--spacing-xl);
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-modal-close:hover {
    background: var(--primary-hover);
}

/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 2000;
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    min-width: 280px;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.info {
    border-left: 4px solid var(--info);
}

.toast-icon {
    font-size: 20px;
}

.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.info .toast-icon { color: var(--info); }

.toast-message {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== BOTTOM SPACER ===== */
.bottom-spacer {
    height: 20px;
}

/* ===== FIXED BOTTOM BAR ===== */
.app-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.bottom-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bottom-bar-info {
    display: flex;
    flex-direction: column;
}

.bbi-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.bbi-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
}

.bottom-bar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.bottom-bar-cta:active {
    transform: scale(0.97);
}

.cta-icon {
    font-size: 18px;
}

/* ===== BOTTOM SHEET ===== */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2001;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
}

.bottom-sheet.active {
    transform: translateY(0);
}

.bottom-sheet-handle {
    display: none;
}

.bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    padding-top: max(16px, env(safe-area-inset-top));
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-sheet-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.bottom-sheet-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #f1f5f9;
    border: none;
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.bottom-sheet-close:hover {
    background: #e2e8f0;
    color: var(--text-primary);
}

.bottom-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    padding-bottom: max(100px, calc(80px + env(safe-area-inset-bottom)));
}

/* ===== EXISTING MEETING BANNER ===== */
.existing-meeting-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.emb-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.emb-content {
    flex: 1;
    min-width: 0;
}

.emb-title {
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 2px;
}

.emb-details {
    font-size: 14px;
    font-weight: 700;
    color: #78350f;
}

.emb-badge {
    flex-shrink: 0;
    background: #f59e0b;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* ===== MEETING CONFIRMED PANEL ===== */
.meeting-confirmed-panel {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.mcp-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.mcp-title {
    font-size: 24px;
    font-weight: 700;
    color: #065f46;
    margin: 0 0 20px 0;
}

.mcp-details {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mcp-date {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.mcp-method {
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mcp-note {
    font-size: 14px;
    color: #047857;
    margin: 0 0 20px 0;
}

.mcp-change-btn {
    background: transparent;
    border: 2px solid #10b981;
    color: #059669;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.mcp-change-btn:hover {
    background: #10b981;
    color: white;
}

/* Mobile bottom bar - confirmed state */
.app-bottom-bar.confirmed {
    background: white;
    border-top: 1px solid var(--border-light);
}

.app-bottom-bar.confirmed .bottom-bar-info {
    position: relative;
    padding-left: 12px;
}

.app-bottom-bar.confirmed .bottom-bar-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.app-bottom-bar.confirmed .bbi-title {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-bottom-bar.confirmed .bbi-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.app-bottom-bar.confirmed .bottom-bar-cta {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.app-bottom-bar.confirmed .bottom-bar-cta:active {
    background: var(--primary);
    color: white;
}

/* ===== SCHEDULER APP FORM ===== */
.scheduler-app-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scheduler-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scheduler-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Method Toggle */
.method-toggle {
    display: flex;
    gap: 10px;
}

.method-toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--bg-body);
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.method-toggle-option.active,
.method-toggle-option:has(input:checked) {
    background: var(--primary-bg);
    border-color: var(--primary);
}

.method-toggle-option input {
    display: none;
}

.mto-icon {
    font-size: 20px;
}

.mto-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Date Picker Scroll */
.date-picker-scroll {
    margin: 0 -20px;
    padding: 0 20px;
}

.date-scroll-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
    scrollbar-width: none;
}

.date-scroll-container::-webkit-scrollbar {
    display: none;
}

.date-scroll-item {
    flex: 0 0 70px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--bg-body);
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.date-scroll-item.active,
.date-scroll-item.selected {
    background: var(--primary-bg);
    border-color: var(--primary);
}

.date-scroll-item.today {
    border-color: var(--success);
}

.dsi-weekday {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.dsi-day {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 2px 0;
}

.date-scroll-item.active .dsi-day,
.date-scroll-item.selected .dsi-day {
    color: var(--primary);
}

.dsi-month {
    font-size: 10px;
    color: var(--text-muted);
}

.dsi-today-badge {
    font-size: 8px;
    background: var(--success);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    font-weight: 600;
}

/* Time Grid */
.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-btn {
    padding: 14px;
    background: var(--bg-body);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.time-btn:active {
    transform: scale(0.97);
}

.time-btn.active,
.time-btn.selected {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

/* Scheduler Summary Bar */
.scheduler-summary-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-body);
    border-radius: 14px;
    margin-top: 8px;
}

.ssb-icon {
    font-size: 24px;
}

.ssb-details {
    display: flex;
    flex-direction: column;
}

.ssb-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.ssb-method {
    font-size: 12px;
    color: var(--text-muted);
}

/* Scheduler Submit Button */
.scheduler-submit-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 20px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 0;
    z-index: 2002;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.scheduler-submit-btn:disabled {
    background: #cbd5e1;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    cursor: not-allowed;
    color: #94a3b8;
}

.scheduler-submit-btn:not(:disabled):hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
}

.scheduler-submit-btn:not(:disabled):active {
    transform: scale(0.99);
}

.ssb-arrow {
    font-size: 20px;
    transition: transform 0.2s;
}

.scheduler-submit-btn:not(:disabled):hover .ssb-arrow {
    transform: translateX(4px);
}

/* ===== SUCCESS MODAL (App Style) ===== */
.app-success-modal .modal-content {
    text-align: center;
    padding: 32px 24px;
}

.success-animation {
    margin-bottom: 20px;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-check {
    font-size: 40px;
    color: white;
    font-weight: bold;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.app-success-modal h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--text-primary);
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.success-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-body);
    border-radius: 12px;
}

.sd-icon {
    font-size: 18px;
}

.sd-text {
    font-size: 14px;
    color: var(--text-primary);
}

.success-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
}

.success-close-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
