/* ============================================================
   EW RDV — Système de rendez-vous en ligne
   cartegrise-public.fr
   ============================================================ */

/* Reset & box-model */
.ew-rdv * { box-sizing: border-box; }

/* ============================================================
   Wrapper principal
   ============================================================ */
.ew-rdv {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================================
   Légende couleurs
   ============================================================ */
.ew-rdv-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.ew-rdv-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.ew-rdv-legend-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,.12);
    flex-shrink: 0;
}

/* ============================================================
   Sélecteur de service
   ============================================================ */
.ew-rdv-services {
    margin-bottom: 28px;
}

.ew-rdv-services h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1e293b;
}

.ew-rdv-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.ew-rdv-service-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    text-align: left;
    width: 100%;
}

.ew-rdv-service-btn:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.ew-rdv-service-btn.active {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.ew-rdv-service-name {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.ew-rdv-service-meta {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.ew-rdv-service-price {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 6px;
}

/* ============================================================
   Calendrier — navigation semaine
   ============================================================ */
.ew-rdv-calendar {
    margin-bottom: 28px;
}

.ew-rdv-week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ew-rdv-week-nav button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background .12s;
}

.ew-rdv-week-nav button:hover { background: #f3f4f6; }
.ew-rdv-week-nav button:disabled { opacity: .4; cursor: default; }

.ew-rdv-week-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* Day columns */
.ew-rdv-days {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

@media (max-width: 640px) {
    .ew-rdv-days { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 380px) {
    .ew-rdv-days { grid-template-columns: repeat(2, 1fr); }
}

.ew-rdv-day {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.ew-rdv-day-header {
    text-align: center;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: #f8fafc;
    color: #64748b;
    border-bottom: 1px solid #e5e7eb;
}

.ew-rdv-day-closed {
    text-align: center;
    padding: 16px 4px;
    font-size: 11px;
    color: #94a3b8;
    font-style: italic;
}

.ew-rdv-slots {
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Slot buttons */
.ew-rdv-slot {
    display: block;
    width: 100%;
    padding: 6px 4px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform .1s, box-shadow .1s, border-color .1s;
    line-height: 1.2;
}

.ew-rdv-slot:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,.15);
}

.ew-rdv-slot.active {
    border-color: #1d4ed8 !important;
    box-shadow: 0 0 0 3px rgba(29,78,216,.25);
}

.ew-rdv-slot:disabled,
.ew-rdv-slot.taken {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Color variants */
.ew-rdv-slot-normal {
    background: #f1f5f9;
    color: #334155;
    border-color: #e2e8f0;
}

/* Happy Hours colors applied inline via style attribute */

.ew-rdv-slot-price {
    display: block;
    font-size: 10px;
    font-weight: 500;
    opacity: .85;
    margin-top: 2px;
}

/* ============================================================
   Loading spinner
   ============================================================ */
.ew-rdv-loading {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
    font-size: 14px;
}

.ew-rdv-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: ew-spin .7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes ew-spin { to { transform: rotate(360deg); } }

/* ============================================================
   Formulaire de réservation
   ============================================================ */
.ew-rdv-form-wrap {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 8px;
}

.ew-rdv-form-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1e293b;
}

.ew-rdv-form-summary {
    font-size: 14px;
    color: #475569;
    margin: 0 0 20px;
    padding: 12px 14px;
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    border-radius: 0 8px 8px 0;
}

.ew-rdv-form-summary strong { color: #15803d; }

.ew-rdv-price-display {
    font-size: 22px;
    font-weight: 800;
    color: #1d4ed8;
}

.ew-rdv-price-original {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 6px;
}

.ew-rdv-discount-badge {
    display: inline-block;
    background: #7C3AED;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Form fields */
.ew-rdv-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}

@media (max-width: 540px) {
    .ew-rdv-fields { grid-template-columns: 1fr; }
}

.ew-rdv-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ew-rdv-field.full {
    grid-column: 1 / -1;
}

.ew-rdv-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.ew-rdv-field label span {
    color: #ef4444;
    margin-left: 2px;
}

.ew-rdv-field input,
.ew-rdv-field select,
.ew-rdv-field textarea {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
    width: 100%;
}

.ew-rdv-field input:focus,
.ew-rdv-field select:focus,
.ew-rdv-field textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.ew-rdv-field textarea { min-height: 80px; resize: vertical; }

/* RGPD */
.ew-rdv-rgpd {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.ew-rdv-rgpd input { width: auto; flex-shrink: 0; margin-top: 2px; }

/* Submit button */
.ew-rdv-submit-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ew-rdv-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .1s;
}

.ew-rdv-submit:hover { background: #1d4ed8; transform: translateY(-1px); }
.ew-rdv-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.ew-rdv-secure-note {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================================
   Messages d'état
   ============================================================ */
.ew-rdv-notice {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.ew-rdv-notice-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.ew-rdv-notice-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.ew-rdv-notice-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

/* ============================================================
   Page d'annulation
   ============================================================ */
.ew-rdv-cancel-page {
    max-width: 520px;
    margin: 40px auto;
    text-align: center;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.ew-rdv-cancel-page h2 {
    font-size: 22px;
    margin: 0 0 12px;
}

/* ============================================================
   Admin — back-office
   ============================================================ */
.ew-rdv-admin-wrap { max-width: 1100px; }

.ew-rdv-admin-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 24px;
}

.ew-rdv-admin-tab {
    padding: 10px 18px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .15s;
}

.ew-rdv-admin-tab.active,
.ew-rdv-admin-tab:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.ew-rdv-admin-panel { display: none; }
.ew-rdv-admin-panel.active { display: block; }

/* Stats cards */
.ew-rdv-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.ew-rdv-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
}

.ew-rdv-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
}

.ew-rdv-stat-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* Admin tables */
.ew-rdv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.ew-rdv-table th {
    background: #f8fafc;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid #e5e7eb;
}

.ew-rdv-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    vertical-align: middle;
}

.ew-rdv-table tr:last-child td { border-bottom: none; }
.ew-rdv-table tr:hover td { background: #fafafa; }

/* Status badges */
.ew-rdv-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.ew-rdv-badge-confirmed  { background: #dcfce7; color: #15803d; }
.ew-rdv-badge-pending    { background: #fef9c3; color: #854d0e; }
.ew-rdv-badge-cancelled  { background: #fee2e2; color: #991b1b; }

/* ============================================================
   Slots — sélection de plage (nouvelle UX créneau-first)
   ============================================================ */

/* Créneau disponible */
.ew-rdv-slot.available {
    cursor: pointer;
    opacity: 1;
}

/* Créneau pris */
.ew-rdv-slot.taken {
    opacity: .35;
    cursor: not-allowed;
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    border-color: #e2e8f0 !important;
    text-decoration: line-through;
}

/* Plage valide (assez de créneaux libres pour la démarche) */
.ew-rdv-slot.in-range.range-ok {
    background: #dcfce7 !important;
    border-color: #16a34a !important;
    color: #14532d !important;
    font-weight: 700;
}

/* Plage bloquée (un créneau de la plage est déjà pris) */
.ew-rdv-slot.in-range.range-blocked {
    background: #fee2e2 !important;
    border-color: #dc2626 !important;
    color: #991b1b !important;
}

/* ============================================================
   Admin — Calendrier mensuel
   ============================================================ */
.ew-rdv-cal-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.ew-rdv-cal-nav h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    min-width: 200px;
    text-align: center;
}

.ew-rdv-cal-grid {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.ew-rdv-cal-grid thead th {
    padding: 10px 6px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.ew-rdv-cal-day {
    vertical-align: top;
    padding: 6px;
    height: 110px;
    border: 1px solid #f1f5f9;
    position: relative;
}

.ew-rdv-cal-empty {
    background: #fafafa;
}

.ew-rdv-cal-weekend {
    background: #fef9f9;
}

.ew-rdv-cal-today {
    background: #eff6ff;
    border-color: #bfdbfe !important;
}

.ew-rdv-cal-day-num {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
}

.ew-rdv-cal-today .ew-rdv-cal-day-num {
    color: #1d4ed8;
}

.ew-rdv-cal-appt {
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 4px;
    margin-bottom: 2px;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: default;
}

.ew-rdv-cal-appt-confirmed {
    background: #dcfce7;
    color: #14532d;
    border-left: 3px solid #16a34a;
}

.ew-rdv-cal-appt-pending {
    background: #fef9c3;
    color: #713f12;
    border-left: 3px solid #ca8a04;
}

.ew-rdv-cal-appt-cancelled {
    background: #f1f5f9;
    color: #94a3b8;
    border-left: 3px solid #cbd5e1;
    text-decoration: line-through;
}

/* ============================================================
   AMÉLIORATIONS UX — Mobile / Tablette / Desktop
   ============================================================ */

/* ── Légende sticky ─────────────────────────────────────────── */
.ew-rdv-legend {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
}

/* ── Touch targets 44px (mobile) ────────────────────────────── */
@media (max-width: 640px) {
    .ew-rdv-slot {
        min-height: 44px;
        padding: 10px 4px;
        font-size: 13px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    .ew-rdv-service-btn {
        min-height: 56px;
        -webkit-tap-highlight-color: transparent;
    }
    .ew-rdv-week-nav button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ── Feedback sélection créneau ─────────────────────────────── */
@keyframes ew-slot-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(29,78,216,.45); }
    60%  { box-shadow: 0 0 0 8px rgba(29,78,216,.0); }
    100% { box-shadow: 0 0 0 0 rgba(29,78,216,.0); }
}
.ew-rdv-slot.active {
    animation: ew-slot-pulse .55s ease-out;
    position: relative;
}
.ew-rdv-slot.active::after {
    content: '✓';
    position: absolute;
    top: -7px;
    right: -7px;
    width: 18px;
    height: 18px;
    background: #1d4ed8;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    text-align: center;
}

/* ── Loading calendrier ─────────────────────────────────────── */
@keyframes ew-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.ew-rdv-days.ew-loading {
    opacity: .45;
    pointer-events: none;
}
.ew-rdv-days.ew-loading .ew-rdv-slot {
    background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%) !important;
    background-size: 400px 100% !important;
    animation: ew-shimmer 1.4s infinite !important;
    color: transparent !important;
    border-color: transparent !important;
}

/* ── Tablette : 3 colonnes ──────────────────────────────────── */
@media (min-width: 501px) and (max-width: 768px) {
    .ew-rdv-days { grid-template-columns: repeat(3, 1fr) !important; }
    .ew-rdv-service-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ── Mobile < 500px : vue jour unique ──────────────────────── */
@media (max-width: 500px) {

    /* Calendrier 1 colonne, 1 seul jour visible à la fois */
    .ew-rdv-days {
        grid-template-columns: 1fr !important;
    }
    .ew-rdv-day {
        display: none;
    }
    .ew-rdv-day.ew-day-active {
        display: block;
    }

    /* Navigation jour */
    .ew-day-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 12px;
    }
    .ew-day-nav-btn {
        width: 44px;
        height: 44px;
        border: 1px solid #d1d5db;
        border-radius: 50%;
        background: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
        transition: background .12s;
    }
    .ew-day-nav-btn:active { background: #f3f4f6; }
    .ew-day-nav-btn:disabled { opacity: .3; pointer-events: none; }
    .ew-day-nav-label {
        font-size: 15px;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        flex: 1;
    }

    /* Dots de navigation */
    .ew-day-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 14px;
    }
    .ew-day-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: #d1d5db;
        cursor: pointer;
        padding: 0;
        transition: all .2s;
        -webkit-tap-highlight-color: transparent;
    }
    .ew-day-dot.active {
        background: #2563eb;
        transform: scale(1.4);
    }
    .ew-day-dot.has-happy { background: #7C3AED; }
    .ew-day-dot.has-slots { background: #94a3b8; }

    /* Hint swipe */
    .ew-swipe-hint {
        text-align: center;
        font-size: 12px;
        color: #94a3b8;
        margin-bottom: 10px;
        animation: ew-fade-out 4s ease forwards;
        animation-delay: 1.5s;
    }
    @keyframes ew-fade-out {
        0% { opacity: 1; }
        80% { opacity: .5; }
        100% { opacity: 0; visibility: hidden; }
    }

    /* Stepper wizard */
    .ew-rdv-stepper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 0 10px;
        background: #fff;
        position: sticky;
        top: 48px; /* sous la légende sticky */
        z-index: 40;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 16px;
    }
    .ew-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }
    .ew-step-num {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #e2e8f0;
        color: #64748b;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .25s;
    }
    .ew-step.active .ew-step-num  { background: #2563eb; color: #fff; }
    .ew-step.done .ew-step-num    { background: #22c55e; color: #fff; }
    .ew-step-label {
        font-size: 10px;
        color: #94a3b8;
        font-weight: 500;
    }
    .ew-step.active .ew-step-label { color: #2563eb; font-weight: 700; }
    .ew-step.done .ew-step-label   { color: #16a34a; }
    .ew-step-line {
        width: 36px;
        height: 2px;
        background: #e2e8f0;
        margin: 0 4px 18px;
        transition: background .25s;
    }
    .ew-step-line.done { background: #22c55e; }

    /* Sections masquées selon l'étape active */
    .ew-wizard-step { display: none; }
    .ew-wizard-step.ew-step-active { display: block; }

    /* Boutons navigation bas de formulaire */
    .ew-wizard-nav {
        display: flex;
        gap: 10px;
        margin-top: 18px;
    }
    .ew-wizard-back {
        padding: 12px 18px;
        min-height: 44px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        background: #fff;
        font-size: 14px;
        cursor: pointer;
        flex-shrink: 0;
    }
    .ew-wizard-next {
        flex: 1;
        min-height: 44px;
        border: none;
        border-radius: 10px;
        background: #2563eb;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: background .15s;
    }
    .ew-wizard-next:disabled { opacity: .4; cursor: not-allowed; }
    .ew-wizard-next:not(:disabled):active { background: #1d4ed8; }

    /* Récap fixé en haut du formulaire (step 3) */
    .ew-rdv-form-summary {
        position: sticky;
        top: 0;
        z-index: 30;
        background: #f0fdf4;
        margin: -24px -24px 20px;
        padding: 14px 16px;
        border-radius: 0;
        border-left: none;
        border-bottom: 2px solid #22c55e;
    }
}

/* ── Desktop — micro-interactions ───────────────────────────── */
@media (min-width: 501px) {
    .ew-rdv-slot:not(:disabled):hover {
        transform: translateY(-1px);
    }
    .ew-rdv-submit:not(:disabled):hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(37,99,235,.35);
    }
}
