/* Genius Tuition - Frontend Styles */

.genius-registration {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px 30px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    scroll-margin-top: 160px;
}

/* Step containers also need scroll-margin so anchor jumps (and the
   scrollIntoView fallback) land below the sticky site header. */
.genius-form-step,
.genius-review-card,
#genius-form-messages { scroll-margin-top: 160px; }

/* "After you click..." helper text under the Register Now button */
.genius-pay-prompt {
    margin: 14px 0 0;
    padding: 12px 14px;
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    color: #1e3a8a;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 6px;
}

/* Kill the gap that Elementor / theme sections inject above the
   shortcode container. The shortcode is usually dropped into a section
   whose parent .elementor-widget-shortcode / .entry-content adds top
   padding + margin. Neutralise it so the form sits flush under the header. */
.elementor-widget-shortcode > .elementor-widget-container:has(#genius-registration-wrapper),
.entry-content > #genius-registration-wrapper,
.entry-content > .genius-registration {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
#genius-registration-wrapper { margin-top: 0; }

/* Elementor container (e-con / e-con-boxed) wrappers also add top padding.
   Catch every ancestor that hosts the form so the steps bar sits flush. */
.elementor-element:has(> .e-con > #genius-registration-wrapper),
.elementor-element:has(> .e-con-boxed > #genius-registration-wrapper),
.elementor-section:has(#genius-registration-wrapper),
.elementor-container:has(#genius-registration-wrapper),
.elementor-column-wrap:has(#genius-registration-wrapper),
.elementor-widget-wrap:has(#genius-registration-wrapper),
.elementor-element-populated:has(#genius-registration-wrapper),
.elementor-widget-shortcode:has(#genius-registration-wrapper),
.elementor-shortcode:has(#genius-registration-wrapper),
.e-con-inner:has(#genius-registration-wrapper),
.e-con:has(#genius-registration-wrapper),
.e-con-boxed:has(#genius-registration-wrapper),
.elementor-widget-container:has(#genius-registration-wrapper) {
    --padding-top: 0 !important;
    --padding-block-start: 0 !important;
    --container-default-padding-top: 0 !important;
    --container-default-padding-block-start: 0 !important;
    padding-top: 0 !important;
    padding-block-start: 0 !important;
    margin-top: 0 !important;
    margin-block-start: 0 !important;
}

#genius-registration-wrapper > .genius-steps {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Steps indicator */
.genius-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.genius-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.genius-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.genius-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.genius-step.active .genius-step-number,
.genius-step.completed .genius-step-number {
    background: #2563eb;
    color: #fff;
}

.genius-step.completed .genius-step-number {
    background: #16a34a;
}

.genius-step-label {
    font-size: 12px;
    color: #888;
    text-align: center;
}

.genius-step.active .genius-step-label {
    color: #2563eb;
    font-weight: 600;
}

/* Registration type toggle */
.genius-type-toggle {
    display: flex;
    gap: 12px;
}

.genius-type-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    font-weight: 600;
}

.genius-type-option:hover {
    border-color: #2563eb;
    background: #f0f4ff;
}

.genius-type-option.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.genius-type-option input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Form elements */
.genius-form-step h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #1a1a1a;
}

.genius-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .genius-form-row {
        grid-template-columns: 1fr;
    }
    .genius-type-toggle {
        flex-direction: column;
    }
}

.genius-form-group {
    margin-bottom: 18px;
}

.genius-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.genius-form-group .required {
    color: #dc2626;
}

.genius-form-group input,
.genius-form-group select,
.genius-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.genius-form-group input:focus,
.genius-form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Buttons */
.genius-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.genius-btn-next,
.genius-btn-submit {
    background: #2563eb;
    color: #fff;
}

.genius-btn-next:hover,
.genius-btn-submit:hover {
    background: #1d4ed8;
}

.genius-btn-prev {
    background: #f3f4f6;
    color: #374151;
}

.genius-btn-prev:hover {
    background: #e5e7eb;
}

.genius-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.genius-btn-small {
    padding: 6px 14px;
    font-size: 13px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
}

.genius-form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

/* Class selection cards */
.genius-class-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.genius-class-option:hover {
    border-color: #2563eb;
    background: #f0f4ff;
}

.genius-class-option.selected {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.genius-class-option h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #1a1a1a;
}

.genius-class-option .genius-class-time {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 8px;
}

.genius-class-option .genius-class-subjects {
    font-size: 14px;
    color: #374151;
    margin: 0 0 8px;
}

.genius-class-option .genius-class-price {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.genius-class-option .genius-class-price small {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.genius-day-selector {
    margin-top: 12px;
}

.genius-day-selector label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.genius-day-selector label:hover {
    border-color: #2563eb;
    background: #f0f4ff;
}

.genius-day-selector label.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.genius-must-both-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #92400e;
    margin-bottom: 16px;
}

.genius-b-class-notice {
    background: #fef2f2;
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #991b1b;
    margin-bottom: 16px;
}

.genius-class-full-notice {
    background: #fef2f2;
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    color: #991b1b;
    font-weight: 600;
}

/* Review card */
.genius-review-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.genius-review-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin: 16px 0 8px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.genius-review-card h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.genius-review-card p {
    margin: 4px 0;
    font-size: 15px;
    color: #1a1a1a;
}

/* Signature */
.genius-signature-wrapper {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
}

.genius-signature-wrapper canvas {
    display: block;
    background: #fff;
    cursor: crosshair;
}

/* Disclaimer */
.genius-disclaimer {
    background: #fff7ed;
    border: 1px solid #fb923c;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    font-size: 14px;
    color: #9a3412;
}

.genius-disclaimer label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.genius-disclaimer input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

/* Messages */
#genius-form-messages {
    margin-top: 16px;
}

.genius-message {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}

.genius-message-success {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    color: #166534;
}

.genius-message-error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Inline per-field validation error */
.genius-field-error {
    color: #b91c1c;
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.genius-field-error::before {
    content: "⚠";
    font-size: 12px;
    line-height: 1.4;
}
.genius-form-group input[style*="ef4444"],
.genius-form-group select[style*="ef4444"] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.genius-info {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Student Dashboard */

.genius-dashboard {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.genius-dashboard h2 {
    font-size: 24px;
    margin: 0 0 24px;
    color: #1a1a1a;
}

.genius-dashboard-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.genius-dashboard-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    background: #fff;
}

.genius-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.genius-dashboard-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
}

.genius-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.genius-status-active {
    background: #dcfce7;
    color: #166534;
}

.genius-status-pending {
    background: #fef3c7;
    color: #92400e;
}

.genius-status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.genius-dashboard-details {
    margin-bottom: 20px;
}

.genius-detail-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.genius-detail-row strong {
    width: 140px;
    flex-shrink: 0;
    color: #6b7280;
}

.genius-detail-row span {
    color: #1a1a1a;
}

.genius-dashboard-schedule,
.genius-dashboard-sessions,
.genius-dashboard-zoom,
.genius-dashboard-reports {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.genius-dashboard-schedule h4,
.genius-dashboard-sessions h4,
.genius-dashboard-zoom h4,
.genius-dashboard-reports h4 {
    font-size: 16px;
    margin: 0 0 12px;
    color: #374151;
}

.genius-schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.genius-schedule-table th,
.genius-schedule-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
}

.genius-schedule-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
}

.genius-session-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.genius-session-list li {
    padding: 8px 12px;
    border-left: 3px solid #2563eb;
    margin-bottom: 6px;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
    border-radius: 0 6px 6px 0;
}

.genius-zoom-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
}

.genius-zoom-row a {
    background: #2563eb;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.genius-zoom-row a:hover {
    background: #1d4ed8;
}

.genius-zoom-pass {
    font-size: 12px;
    color: #6b7280;
}

.genius-zoom-help {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 6px;
}

.genius-dashboard-support {
    text-align: center;
    margin-top: 30px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    color: #6b7280;
}

.genius-not-logged-in {
    text-align: center;
    padding: 40px;
}

.genius-not-logged-in a {
    color: #2563eb;
    font-weight: 600;
}

/* Report Cards on Student Dashboard */

.genius-report-month-group {
    margin-bottom: 24px;
}

.genius-report-month-group h5 {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.genius-report-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.genius-report-card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.genius-report-subject {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.genius-report-topic {
    font-size: 13px;
    color: #6b7280;
    background: #e5e7eb;
    padding: 2px 8px;
    border-radius: 4px;
}

.genius-report-teacher {
    font-size: 12px;
    color: #6b7280;
    margin-left: auto;
}

.genius-report-attendance {
    margin-bottom: 8px;
    font-size: 14px;
}

.genius-attendance-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.genius-attendance-present {
    background: #dcfce7;
    color: #166534;
}

.genius-attendance-absent {
    background: #fee2e2;
    color: #991b1b;
}

.genius-attendance-late {
    background: #fef3c7;
    color: #92400e;
}

.genius-report-rating {
    margin-bottom: 8px;
    font-size: 14px;
}

.genius-stars {
    margin-left: 4px;
}

.genius-star {
    color: #d1d5db;
    font-size: 16px;
}

.genius-star.filled {
    color: #f59e0b;
}

.genius-report-effort {
    margin-bottom: 8px;
    font-size: 14px;
}

.genius-effort-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    background: #dbeafe;
    color: #1e40af;
}

.genius-report-effort p,
.genius-report-section p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

.genius-report-section {
    margin-bottom: 8px;
    font-size: 14px;
}

.genius-report-achievement {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 10px 12px;
}

.genius-no-reports {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    padding: 20px;
}
/* ================================================================
   CYCLE PREVIEW - mobile breakpoint (Batch B)
   ================================================================ */
.genius-cycle-preview,
#genius-payment-summary,
#review-cycle-breakdown {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    background: #f8fafc;
    margin: 10px 0 16px;
}

.genius-cycle-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.genius-cycle-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 14px;
}

.genius-cycle-list li:last-child { border-bottom: none; }

@media (max-width: 480px) {
    .genius-cycle-preview,
    #genius-payment-summary,
    #review-cycle-breakdown {
        padding: 12px 14px;
        font-size: 13px;
    }
    .genius-cycle-list li {
        font-size: 13px;
    }
}

/* Mobile sweep - registration form + step nav */
@media (max-width: 600px) {
    #genius-registration-wrapper { padding: 0 12px 12px !important; }
    .genius-form-group input,
    .genius-form-group select,
    .genius-form-group textarea {
        font-size: 16px; /* prevents iOS auto-zoom on focus */
        padding: 12px 14px;
    }
    .genius-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
    .genius-step-nav,
    .genius-form-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .genius-step-nav .genius-btn { width: 100%; }
}

/* Pending payment notice on student portal */
.genius-pending-payment-notice {
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 12px 0;
    font-size: 14px;
}



/* Genius public form safety + HAF */
.genius-honeypot, .genius-haf-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.genius-haf-location-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin: 20px 0; }
.genius-haf-location { display: block; padding: 20px; border: 1px solid #e2e8f0; border-radius: 12px; text-decoration: none; background: #fff; }
.genius-haf-location h3 { margin: 0 0 8px; }
.genius-haf-section { margin: 0 0 24px; padding: 20px; border: 1px solid #e2e8f0; border-radius: 12px; background: #fff; }
.genius-haf-section legend { font-weight: 700; padding: 0 6px; }
.genius-haf-terms { margin: 18px 0; }
.genius-haf-success { padding: 18px; border: 1px solid #86efac; border-radius: 10px; background: #f0fdf4; }


.genius-haf-step-nav{display:flex;gap:12px;justify-content:space-between;margin-top:22px}
.genius-haf-step-nav .genius-haf-prev{background:#eef2f6;border:1px solid #cbd5e1;border-radius:6px;padding:11px 18px;font-weight:600;cursor:pointer}
.genius-haf-step-nav .genius-haf-next{margin-left:auto;width:auto}

.genius-ican-wrap{max-width:1050px;margin:0 auto;scroll-margin-top:130px}
.genius-ican-heading{text-align:center;margin-bottom:18px}
.genius-ican-heading h2{margin-bottom:8px}
.genius-ican-options{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:20px 0 28px}
.genius-ican-option{display:flex;align-items:center;justify-content:center;gap:7px;min-height:54px;padding:10px 12px;border:1px solid #cbd5e1;border-radius:10px;background:#fff;color:#243047;text-decoration:none;font-weight:700;text-align:center}
.genius-ican-option:hover{border-color:#4f46e5;color:#4338ca}
.genius-ican-option.is-active{border-color:#4f46e5;background:#4f46e5;color:#fff;box-shadow:0 8px 20px rgba(79,70,229,.18)}
.genius-ican-option small{font-size:12px;opacity:.85}
.genius-ican-empty,.genius-ican-success{padding:24px;border:1px solid #cbd5e1;border-radius:12px;background:#fff;text-align:center}
.genius-ican-success{border-color:#86efac;background:#f0fdf4;scroll-margin-top:130px}
.genius-ican-section,.genius-ican-session-picker{margin:0 0 24px;padding:22px;border:1px solid #e2e8f0;border-radius:12px;background:#fff}
.genius-ican-section legend,.genius-ican-session-picker legend{padding:0 7px;font-size:18px;font-weight:750;color:#1e293b}
.genius-ican-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.genius-ican-field{margin:0}
.genius-ican-field label{display:block;margin:0 0 7px;font-weight:650;color:#334155}
.genius-ican-field input,.genius-ican-field select,.genius-ican-field textarea{width:100%;max-width:none;min-height:46px;border:1px solid #cbd5e1;border-radius:8px;padding:10px 12px;background:#fff;color:#111827}
.genius-ican-field textarea{min-height:94px;resize:vertical}
.genius-ican-field input:focus,.genius-ican-field select:focus,.genius-ican-field textarea:focus{outline:2px solid rgba(79,70,229,.25);border-color:#4f46e5}
.genius-ican-textarea{grid-column:1/-1}
.genius-ican-terms{display:flex;align-items:flex-start;gap:10px;margin:20px 0;padding:16px;border:1px solid #cbd5e1;border-radius:10px;background:#f8fafc}
.genius-ican-terms input{margin-top:3px}
.genius-ican-pay-note{margin:10px 0 0;color:#64748b;font-size:13px}
.genius-ican-calendar{max-width:700px}
.genius-ican-calendar-nav{display:grid;grid-template-columns:44px 1fr 44px;align-items:center;gap:8px;margin:14px 0;text-align:center}
.genius-ican-calendar-nav button{height:40px;border:1px solid #cbd5e1;border-radius:8px;background:#fff;cursor:pointer}
.genius-ican-calendar-nav button:disabled{opacity:.35;cursor:not-allowed}
.genius-ican-weekdays,.genius-ican-days{display:grid;grid-template-columns:repeat(7,1fr);gap:5px}
.genius-ican-weekdays span{padding:5px 0;text-align:center;color:#64748b;font-size:12px;font-weight:700}
.genius-ican-day,.genius-ican-days .is-blank{aspect-ratio:1;min-height:42px;border:1px solid #e2e8f0;border-radius:8px;background:#f8fafc;color:#94a3b8}
.genius-ican-day.is-available{border-color:#a5b4fc;background:#eef2ff;color:#3730a3;font-weight:800;cursor:pointer}
.genius-ican-day.is-available:hover,.genius-ican-day.is-selected{border-color:#4f46e5;background:#4f46e5;color:#fff}
.genius-ican-times{margin-top:18px;padding-top:18px;border-top:1px solid #e2e8f0}
.genius-ican-time-group h4{margin:0 0 10px}
.genius-ican-time-group label{display:flex;align-items:center;gap:9px;margin:8px 0;padding:11px 12px;border:1px solid #cbd5e1;border-radius:8px;background:#fff;cursor:pointer}
.genius-ican-time-group label:has(input:checked){border-color:#4f46e5;background:#eef2ff}
@media(max-width:780px){.genius-ican-options{grid-template-columns:repeat(2,minmax(0,1fr))}.genius-ican-grid{grid-template-columns:1fr}.genius-ican-textarea{grid-column:auto}.genius-ican-section,.genius-ican-session-picker{padding:16px}.genius-ican-day,.genius-ican-days .is-blank{min-height:36px}}
