/**
 * mobile.css — Layout mobile (bottom tabs, safe areas, header compact, etc.)
 * Source : layouts/mobile.blade.php + vues mobile/*
 */

/* ===== Mobile base ===== */
html { height: 100%; -webkit-text-size-adjust: 100%; }
a { text-decoration: none; }

body.mobile-layout {
    margin: 0;
    min-height: 100%;
    background: #f8fafc;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-top: var(--safe-top);
}

/* ===== Header mobile compact ===== */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.mobile-header-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    flex: 1;
    text-align: center;
}
.mobile-header-left,
.mobile-header-right {
    min-width: 40px;
    display: flex;
    align-items: center;
}
.mobile-header-right { justify-content: flex-end; }
.mobile-header .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.25rem;
    cursor: pointer;
}
.mobile-header .btn-icon:active { background: #f1f5f9; }

/* ===== Contenu principal ===== */
.mobile-content {
    padding: 1rem;
    padding-bottom: calc(var(--tab-height) + var(--safe-bottom) + 1rem);
    min-height: calc(100vh - 56px - var(--tab-height));
}

/* ===== Bottom tabs ===== */
.bottom-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--tab-height) + var(--safe-bottom));
    padding-bottom: var(--safe-bottom);
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
}
.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}
.tab-item i { font-size: 1.4rem; }
.tab-item.active { color: var(--primary-color); }
.tab-item.active i { font-weight: 700; }
.tab-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ===== Cards mobile ===== */
.card-mobile {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ===== Stat cards mobile ===== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.stat-mobile {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.stat-mobile-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}
.stat-mobile-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

/* ===== Toast mobile ===== */
#mobile-toast {
    position: fixed;
    top: calc(var(--safe-top) + 60px);
    left: 1rem;
    right: 1rem;
    z-index: 9999;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease;
}
#mobile-toast.show { display: flex; }
#mobile-toast.success { background: #10b981; color: white; }
#mobile-toast.error { background: #ef4444; color: white; }
#mobile-toast.warning { background: #f59e0b; color: white; }
#mobile-toast.info { background: #3b82f6; color: white; }

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== Utilitaires mobile ===== */
.text-primary { color: var(--primary-color) !important; }
.pull-to-refresh { text-align: center; padding: 0.5rem; color: #94a3b8; font-size: 0.8rem; }

/* Fix iOS rubber-banding */
@supports (-webkit-touch-callout: none) {
    body.mobile-layout { min-height: -webkit-fill-available; }
}

/* ===== Family dashboard mobile ===== */
.stat-link {
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.1s ease;
}
.stat-link:active { transform: scale(0.97); background: #f1f5f9; }
.stat-chevron {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.85rem;
    color: #cbd5e1;
}
.next-rdv-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfeff 100%);
    border: 1px solid #bae6fd;
}
.gps-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #4f46e5;
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    gap: 0.1rem;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}
.gps-btn:active { background: #4338ca; transform: scale(0.95); }
.gps-btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #4f46e5;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.gps-btn-small:active { background: #4338ca; }

/* ===== Horizontal scroll helpers ===== */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ===== MN strip (family mobile dashboard) ===== */
.mn-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
}
.mn-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.mn-bubble:active { transform: scale(0.95); }
.mn-bubble__img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4f46e5;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}
.mn-bubble__initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #4f46e5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid #4f46e5;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}
.mn-bubble__name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #334155;
    max-width: 64px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== Planning mobile (MN) ===== */
.ti-spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.planning-dates {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.date-pill {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 56px;
    padding: 0.5rem 0.4rem 0.6rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.date-pill:active { transform: scale(0.95); }
.date-pill--active {
    background: #06b6d4 !important;
    border-color: #06b6d4 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}
.date-pill--active .date-pill__day,
.date-pill--active .date-pill__month {
    color: rgba(255, 255, 255, 0.85) !important;
}
.date-pill--today:not(.date-pill--active) { border-color: #06b6d4; }
.date-pill__day {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.03em; color: #94a3b8; line-height: 1;
}
.date-pill__num { font-size: 1.2rem; font-weight: 800; line-height: 1.3; }
.date-pill__month {
    font-size: 0.6rem; font-weight: 600; text-transform: uppercase;
    color: #94a3b8; line-height: 1;
}
.date-pill__badge {
    position: absolute; top: -4px; right: -4px;
    background: #f59e0b; color: white; font-size: 0.6rem; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* ================================================================
 * MOBILE VIEWS — Extracted inline styles (Pass 2)
 * ================================================================ */

/* ===== Mobile Messages (shared MN + Family) ===== */
.msg-empty { text-align: center; padding: 3rem 1rem; color: #94a3b8; }
.msg-empty i { font-size: 3rem; }
.msg-empty p { margin-top: 0.5rem; }

.conv-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    -webkit-tap-highlight-color: transparent;
}
.conv-item:active { background: #f8fafc; }
.conv-item--unread {
    background: #f0f9ff;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.25rem;
    border-bottom: none;
}
.conv-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.conv-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.conv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conv-name { font-weight: 600; font-size: 0.9rem; }
.conv-time { font-size: 0.7rem; color: #94a3b8; white-space: nowrap; margin-left: 0.5rem; }
.conv-preview {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.conv-badge {
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 11px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    margin-left: 0.5rem;
}

.chat-wrapper { margin: -1rem; margin-top: -0.5rem; }
.chat-scroll {
    overflow-y: auto;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 56px - var(--tab-height) - 60px - env(safe-area-inset-bottom, 0px));
}
.chat-row { margin-bottom: 0.75rem; }
.chat-row--mine { text-align: right; margin-left: 15%; }
.chat-row--other { text-align: left; margin-right: 15%; }

.chat-bubble {
    display: inline-block;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    max-width: 100%;
    text-align: left;
    word-wrap: break-word;
    line-height: 1.4;
}
.chat-bubble--mine {
    color: white;
    border-radius: 16px 16px 4px 16px;
}
.chat-bubble--mine.mn-bubble-color { background: #06b6d4; }
.chat-bubble--mine.family-bubble-color { background: #4f46e5; }
.chat-bubble--other {
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 16px 16px 16px 4px;
}
.chat-bubble--mine .chat-time { color: rgba(255,255,255,0.6); }
.chat-bubble--other .chat-time { color: #94a3b8; }
.chat-time { font-size: 0.65rem; margin-top: 3px; padding: 0; }

.chat-input {
    position: fixed;
    bottom: calc(var(--tab-height) + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    border-top: 1px solid #e9ecef;
    background: white;
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    z-index: 50;
}
.chat-textarea {
    flex: 1;
    padding: 0.6rem 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.9rem;
    resize: none;
    max-height: 80px;
    font-family: inherit;
    line-height: 1.4;
}
.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.chat-send.mn-send-color { background: #06b6d4; }
.chat-send.family-send-color { background: #4f46e5; }
.chat-send i { font-size: 1.1rem; }
.chat-send--disabled { opacity: 0.4; }

/* ===== Common utility classes ===== */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.ti-spin { animation: mn-spin 1s linear infinite; }
@keyframes mn-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== Mobile Search ===== */
.gps-locate-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s;
}
.gps-locate-btn:active { transform: scale(0.95); }
.gps-locate-btn--active {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: white;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.filter-chip--active {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}
.view-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.45rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.view-btn--active {
    background: white;
    color: #4f46e5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.mn-card-mobile {
    display: block;
    background: white;
    border-radius: 12px;
    padding: 0.85rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    -webkit-tap-highlight-color: transparent;
}
.mn-card-mobile:active { background: #f8fafc; }
.mn-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.mn-card-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Search map styles */
.marker-cluster-small, .marker-cluster-medium, .marker-cluster-large { background: rgba(79,70,229,0.2) !important; }
.marker-cluster-small div, .marker-cluster-medium div, .marker-cluster-large div { background: #4f46e5 !important; color: white !important; font-weight: 600; }
.mn-marker-photo { border-radius: 50%; border: 3px solid #4f46e5; box-shadow: 0 2px 6px rgba(0,0,0,0.3); width: 40px !important; height: 40px !important; object-fit: cover; }
.mn-marker-initials { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#4f46e5,#06b6d4); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; border: 3px solid white; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.leaflet-popup-content { min-width: 160px; }
.mn-popup { text-align: center; }
.mn-popup img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; margin-bottom: 6px; }
.mn-popup h4 { margin: 0 0 3px; font-size: 0.9rem; }
.mn-popup .city { color: #6c757d; font-size: 0.8rem; }
.mn-popup .rate { font-weight: 600; color: #4f46e5; margin-top: 4px; font-size: 0.85rem; }
.mn-popup a { display: inline-block; margin-top: 6px; background: #4f46e5; color: white !important; padding: 0.3rem 0.75rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; text-decoration: none; }

/* ===== Mobile Appointments ===== */
.planning-dates {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
.date-pill {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 56px;
    padding: 0.5rem 0.4rem 0.6rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.date-pill:active { transform: scale(0.95); }
.date-pill--active {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}
.date-pill--active .date-pill__day,
.date-pill--active .date-pill__month {
    color: rgba(255, 255, 255, 0.85) !important;
}
.date-pill--today:not(.date-pill--active) { border-color: #4f46e5; }
.date-pill__day {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.03em; color: #94a3b8; line-height: 1;
}
.date-pill__num { font-size: 1.2rem; font-weight: 800; line-height: 1.3; }
.date-pill__month {
    font-size: 0.6rem; font-weight: 600; text-transform: uppercase;
    color: #94a3b8; line-height: 1;
}
.date-pill__badge {
    position: absolute; top: -4px; right: -4px;
    background: #f59e0b; color: white; font-size: 0.6rem; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.apt-action-btn {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.75rem; border-radius: 8px; border: none;
    font-size: 0.8rem; font-weight: 600; cursor: pointer;
    text-decoration: none; font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.apt-action-btn:active { opacity: 0.8; }

/* MN strip */
.mn-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
}
.mn-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.mn-bubble:active { transform: scale(0.95); }
.mn-bubble__img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4f46e5;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}
.mn-bubble__initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #4f46e5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid #4f46e5;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}
.mn-bubble__name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #334155;
    max-width: 64px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== Reservation Calendar ===== */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.cal-header {
    text-align: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: #94a3b8;
    padding: 4px 0;
}
.cal-cell {
    text-align: center;
    padding: 8px 2px;
    border-radius: 10px;
    font-size: 0.85rem;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.15s;
    position: relative;
}
.cal-cell.empty { cursor: default; }
.cal-cell.past { color: #e2e8f0; cursor: default; }
.cal-cell.no-slot { color: #e2e8f0; cursor: default; }
.cal-cell.available { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.cal-cell.available:active { background: #d1fae5; transform: scale(0.95); }
.cal-cell.selected { background: #4f46e5 !important; color: white !important; border-color: #4f46e5 !important; font-weight: 700; }
.cal-cell.full { background: #fef2f2; color: #991b1b; cursor: default; border: 1px solid #fecaca; }
.cal-spots { font-size: 0.55rem; opacity: 0.7; line-height: 1; }
.cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #334155;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.cal-nav:active { background: #f1f5f9; }
.recap-bar {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.confirm-btn:disabled { opacity: 0.5; }
.confirm-btn:active:not(:disabled) { transform: scale(0.98); }

/* ===== Mobile Profile ===== */
.profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.profile-label { font-size: 0.85rem; color: #64748b; }
.profile-value { font-size: 0.85rem; font-weight: 600; color: #0f172a; }
.form-group-mobile { margin-bottom: 1rem; }
.form-label-mobile { display: block; font-size: 0.8rem; font-weight: 600; color: #374151; margin-bottom: 0.35rem; }
.form-input-mobile {
    width: 100%; padding: 0.65rem 0.75rem; border: 1px solid #e2e8f0; border-radius: 10px;
    font-size: 0.9rem; font-family: inherit; background: white; color: #0f172a; -webkit-appearance: none;
}
.form-input-mobile:focus { outline: none; border-color: #06b6d4; box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1); }
.btn-mobile-primary {
    width: 100%; padding: 0.75rem;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white; border: none; border-radius: 12px; font-size: 0.9rem;
    font-weight: 600; font-family: inherit; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    -webkit-tap-highlight-color: transparent;
}
.btn-mobile-primary:active { background: #0891b2; }
.btn-mobile-primary:disabled { opacity: 0.6; }
.btn-mobile-secondary {
    padding: 0.75rem; background: white; color: #64748b;
    border: 1px solid #e2e8f0; border-radius: 12px; font-size: 0.9rem;
    font-weight: 600; font-family: inherit; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.btn-mobile-secondary:active { background: #f8fafc; }

/* ===== Clarity Home ===== */
.home-wrapper {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: calc(100vh - 2rem); padding: 2rem 1.5rem; text-align: center;
    background: linear-gradient(160deg, #f0f4ff 0%, #e8f8fa 50%, #f8fafc 100%);
}
.home-logo { margin-bottom: 1rem; }
.home-logo img { width: 180px; height: auto; border-radius: 12px; }
.home-title { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin-bottom: 0.25rem; }
.home-subtitle { font-size: 0.9rem; color: #64748b; margin-bottom: 3rem; }
.home-actions { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 320px; }
.home-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 1rem 1.5rem; border-radius: 14px; text-decoration: none;
    font-weight: 600; font-size: 1.05rem; transition: transform 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.home-btn:active { transform: scale(0.97); }
.home-btn-primary { background: #4f46e5; color: white; }
.home-btn-primary:hover { background: #4338ca; color: white; }
.home-btn-secondary { background: white; color: #0f172a; border: 2px solid #e2e8f0; }
.home-btn-secondary:hover { background: #f8fafc; color: #0f172a; }

/* ===== MN Profile (mn-profile.blade.php) ===== */
.mn-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 4px solid white; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.mn-avatar-placeholder { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, #4f46e5, #06b6d4); color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; border: 4px solid white; box-shadow: 0 4px 16px rgba(0,0,0,0.12); margin: 0 auto; }
.mn-cta-btn { display: flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.7rem 1rem; border-radius: 12px; font-size: 0.85rem; font-weight: 600; text-decoration: none; -webkit-tap-highlight-color: transparent; border: none; cursor: pointer; }
.mn-cta-btn:active { opacity: 0.85; transform: scale(0.98); }
.mn-book-btn { display: flex; align-items: center; justify-content: center; gap: 0.4rem; width: 100%; padding: 0.65rem; background: linear-gradient(135deg, #4f46e5, #06b6d4); color: white; border: none; border-radius: 10px; font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: inherit; -webkit-tap-highlight-color: transparent; }
.mn-book-btn:active { opacity: 0.85; transform: scale(0.98); }

/* ===== Students ===== */
.stu-tabs { display: flex; background: #f1f5f9; border-radius: 10px; padding: 3px; margin-bottom: 1rem; }
.stu-tab { flex: 1; padding: 0.5rem; border: none; border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer; background: transparent; color: #64748b; transition: all 0.2s; }
.stu-tab--active { background: white; color: #0f172a; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.stu-empty { text-align: center; padding: 2rem; color: #94a3b8; }
.stu-empty i { font-size: 2.5rem; }
.stu-empty p { margin-top: 0.5rem; }
.stu-row { display: flex; align-items: center; gap: 0.75rem; }
.stu-avatar { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.stu-info { flex: 1; min-width: 0; }
.stu-name { font-weight: 700; font-size: 0.95rem; }
.stu-meta { font-size: 0.8rem; color: #64748b; }
.stu-sub { font-size: 0.75rem; color: #94a3b8; }
.stu-actions { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.stu-eval-badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.65rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }
.stu-details { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #f1f5f9; display: flex; flex-direction: column; gap: 0.5rem; }
.stu-eval-notes { font-size: 0.8rem; color: #64748b; padding: 0.4rem 0.6rem; background: #f8fafc; border-radius: 6px; }
.stu-family { font-size: 0.85rem; color: #64748b; display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.stu-phone { color: #10b981; text-decoration: none; font-weight: 600; margin-left: 0.5rem; }
.stu-stats { font-size: 0.8rem; color: #64748b; display: flex; gap: 1rem; }
.stu-upcoming { color: #3b82f6; font-weight: 600; }
.stu-modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.5); display: flex; align-items: flex-end; }
.stu-modal { background: white; width: 100%; border-radius: 16px 16px 0 0; padding: 1.5rem; padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); max-height: 80vh; overflow-y: auto; }
.stu-modal-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.stu-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; display: block; }
.stu-eval-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1rem; }
.stu-eval-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.65rem 0.75rem; border-radius: 10px; border: 2px solid; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.15s ease; }
.stu-eval-btn span:first-child { font-size: 1.1rem; }
.stu-textarea { width: 100%; padding: 0.75rem; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 0.9rem; resize: none; margin-bottom: 0.5rem; font-family: inherit; }

/* ===== Student Detail ===== */
.sd-empty { text-align: center; padding: 3rem; color: #94a3b8; }
.sd-empty i { font-size: 2.5rem; }
.sd-header { text-align: center; padding: 1.25rem; }
.sd-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #06b6d4, #0891b2); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; margin: 0 auto 0.5rem; }
.sd-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid #06b6d4; margin: 0 auto 0.5rem; display: block; }
.sd-title { font-weight: 700; font-size: 1.15rem; }
.sd-subtitle { font-size: 0.85rem; color: #64748b; }
.sd-section-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.35rem; }
.sd-info-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.sd-info-label { font-size: 0.7rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.03em; }
.sd-info-value { font-size: 0.9rem; font-weight: 600; }
.sd-family-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.sd-family-contacts { display: flex; flex-direction: column; gap: 0.35rem; }
.sd-contact-link { text-decoration: none; font-size: 0.9rem; display: flex; align-items: center; gap: 0.35rem; }
.sd-contact-phone { color: #10b981; }
.sd-contact-email { color: #3b82f6; }
.sd-apt { cursor: pointer; }
.sd-apt:active { background: #f8fafc; }
.sd-apt-row { display: flex; align-items: center; gap: 0.75rem; }
.sd-apt-date { width: 40px; text-align: center; flex-shrink: 0; }
.sd-apt-day { font-size: 1.1rem; font-weight: 800; line-height: 1.1; }
.sd-apt-month { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; color: #64748b; }
.sd-apt-info { flex: 1; min-width: 0; }
.sd-apt-time { font-size: 0.85rem; font-weight: 600; }
.sd-apt-loc { font-size: 0.75rem; color: #64748b; }
.sd-apt-eval { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }
.sd-apt-eval-notes { opacity: 0.8; font-weight: 400; }

/* ===== FAQ ===== */
.faq-list { padding: 0 !important; overflow: hidden; }
.faq-item { padding: 0.85rem 1rem; border-bottom: 1px solid #f1f5f9; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.faq-item:active { background: #f8fafc; }
.faq-item--last { border-bottom: none; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 600; color: #0f172a; }
.faq-a { font-size: 0.8rem; color: #64748b; line-height: 1.5; margin-top: 0.5rem; padding-right: 1.5rem; }

/* ===== Legal pages (CGV, Confidentialité, Mentions) ===== */
.legal-card { padding: 0 !important; overflow: hidden; }
.legal-section { padding: 1rem; border-bottom: 1px solid #f1f5f9; }
.legal-title { font-size: 0.85rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.legal-section p { font-size: 0.8rem; color: #475569; line-height: 1.6; margin: 0; }
.legal-section ul { font-size: 0.8rem; color: #475569; line-height: 1.6; margin: 0.4rem 0 0 0; padding-left: 1.25rem; }
.legal-section li { margin-bottom: 0.25rem; }

/* ===== Appointment Show (GPS button) ===== */
.gps-big-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.85rem; background: #4f46e5; color: white;
    border-radius: 12px; text-decoration: none; font-size: 1rem; font-weight: 700;
    margin-top: 0.75rem; box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
    -webkit-tap-highlight-color: transparent;
}
.gps-big-btn:active { background: #4338ca; transform: scale(0.98); }

/* ===== More page ===== */
.more-link {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem;
    text-decoration: none; color: #0f172a; border-bottom: 1px solid #f1f5f9;
    -webkit-tap-highlight-color: transparent;
}
.more-link:active { background: #f8fafc; }
.more-icon { font-size: 1.2rem; flex-shrink: 0; }
.more-label { flex: 1; font-size: 0.9rem; }
.more-chevron { color: #94a3b8; font-size: 0.9rem; flex-shrink: 0; }

/* ===== Subscription ===== */
.sub-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 1rem; border-bottom: 1px solid #f1f5f9; }
.sub-label { font-size: 0.8rem; color: #64748b; }
.sub-value { font-size: 0.85rem; font-weight: 600; color: #0f172a; }

/* ===== Family Profile form ===== */
.fm-group { margin-bottom: 1rem; }
.fm-label { display: block; font-size: 0.8rem; font-weight: 600; color: #374151; margin-bottom: 0.35rem; }
.fm-input { width: 100%; padding: 0.65rem 0.75rem; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 0.9rem; font-family: inherit; background: white; color: #0f172a; -webkit-appearance: none; }
.fm-input:focus { outline: none; border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }

/* ===== Filter Pills (réutilisable) ===== */
.filter-pills { display: flex; gap: 0.5rem; margin-bottom: 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pill {
    flex: 1; min-width: 0; padding: 0.55rem 0.75rem; border-radius: 12px;
    font-size: 0.8rem; font-weight: 600; font-family: inherit; cursor: pointer;
    border: 1.5px solid #e2e8f0; background: #f8fafc; color: #64748b;
    transition: all 0.2s ease; -webkit-tap-highlight-color: transparent;
    text-align: center; white-space: nowrap;
}
.filter-pill:active { transform: scale(0.96); }
.filter-pill.active { color: white; border-color: transparent; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.filter-pill.active[data-color="purple"] { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.filter-pill.active[data-color="blue"] { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.filter-pill.active[data-color="cyan"] { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.filter-pill.active[data-color="green"] { background: linear-gradient(135deg, #10b981, #059669); }
.filter-pill.active[data-color="red"] { background: linear-gradient(135deg, #ef4444, #dc2626); }
.filter-pill.active[data-color="amber"] { background: linear-gradient(135deg, #f59e0b, #d97706); }
/* Default active without data-color */
.filter-pill.active:not([data-color]) { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

/* ===== Search Input (réutilisable) ===== */
.search-input-wrap { position: relative; margin-bottom: 0.75rem; }
.search-input-wrap i { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 1.1rem; }
.search-input {
    width: 100%; padding: 0.7rem 0.75rem 0.7rem 2.5rem;
    border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: 0.85rem;
    font-family: inherit; background: white; color: #0f172a;
    -webkit-appearance: none; transition: border-color 0.2s;
}
.search-input:focus { outline: none; border-color: #8b5cf6; box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
.search-input::placeholder { color: #94a3b8; }

/* ===== Counter label ===== */
.result-count { font-size: 0.75rem; color: #94a3b8; margin-bottom: 0.5rem; padding-left: 0.25rem; }

/* ===== User List Item ===== */
.user-list-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem; border-bottom: 1px solid #f1f5f9;
    text-decoration: none; color: #0f172a;
    -webkit-tap-highlight-color: transparent; transition: background 0.15s;
}
.user-list-item:active { background: #f8fafc; }
.user-list-avatar {
    width: 42px; height: 42px; border-radius: 50%; color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem; flex-shrink: 0;
}
.user-list-info { flex: 1; min-width: 0; }
.user-list-name { font-weight: 600; font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-list-email { font-size: 0.72rem; color: #94a3b8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-list-meta { text-align: right; flex-shrink: 0; }
.user-list-status {
    font-size: 0.65rem; font-weight: 600; padding: 0.2rem 0.5rem;
    border-radius: 6px; display: inline-block;
}
.user-list-status.status-active { background: #dcfce7; color: #16a34a; }
.user-list-status.status-inactive { background: #fef2f2; color: #dc2626; }
.user-list-status.status-pending { background: #fef9c3; color: #ca8a04; }
.user-list-role { font-size: 0.68rem; color: #94a3b8; margin-top: 0.15rem; }

/* ===== User Show (fiche détail admin) ===== */
.user-show-header { text-align: center; padding: 1.5rem 1rem; }
.user-show-avatar {
    width: 64px !important; height: 64px !important; min-width: 64px; max-width: 64px;
    border-radius: 50% !important; color: white; margin: 0 auto 0.75rem;
    display: flex !important; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.user-show-name { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 0.25rem; }
.user-show-ref { font-size: 0.75rem; color: #94a3b8; font-family: monospace; }
.user-show-badges {
    display: flex; gap: 0.5rem; justify-content: center; align-items: center;
    margin-top: 0.75rem; flex-wrap: wrap;
}
.user-show-badge {
    display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px;
    font-size: 0.7rem; font-weight: 600;
}
.user-show-badge.badge-status-active { background: #dcfce7; color: #16a34a; }
.user-show-badge.badge-status-inactive { background: #fef2f2; color: #dc2626; }
.user-show-badge.badge-status-pending { background: #fef9c3; color: #ca8a04; }
.user-show-badge.badge-role-family { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; }
.user-show-badge.badge-role-master_swimmer { background: linear-gradient(135deg, #06b6d4, #0891b2); color: white; }
.user-show-badge.badge-role-admin { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; }
.user-show-section-title {
    font-size: 0.75rem; font-weight: 700; color: #8b5cf6; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 0.75rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
    display: flex; align-items: center; gap: 0.4rem;
}
.user-show-section-title i { font-size: 1rem; }
.user-show-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.65rem 0; border-bottom: 1px solid #f8fafc;
}
.user-show-row:last-child { border-bottom: none; }
.user-show-label { font-size: 0.8rem; color: #94a3b8; flex-shrink: 0; }
.user-show-value { font-size: 0.85rem; font-weight: 600; color: #0f172a; text-align: right; max-width: 60%; word-break: break-word; }
.user-show-action-btn {
    width: 100%; padding: 0.85rem; border: none; border-radius: 14px;
    font-size: 0.9rem; font-weight: 600; font-family: inherit; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    transition: transform 0.15s, box-shadow 0.15s;
}
.user-show-action-btn:active { transform: scale(0.97); }
.user-show-action-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca); color: #dc2626;
    box-shadow: 0 2px 8px rgba(220,38,38,0.15);
}
.user-show-action-success {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #16a34a;
    box-shadow: 0 2px 8px rgba(22,163,106,0.15);
}

/* ===== Mobile Login ===== */
.mobile-login-wrapper {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 100vh; padding: 2rem 1.5rem; text-align: center;
    background: linear-gradient(160deg, #f0f4ff 0%, #e8f8fa 50%, #f8fafc 100%);
}
.mobile-login-logo { margin-bottom: 1.5rem; }
.mobile-login-logo img { width: 120px; height: auto; border-radius: 12px; }
.mobile-login-title {
    font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 1.5rem;
}
.mobile-login-alert {
    width: 100%; max-width: 360px; padding: 0.75rem 1rem; border-radius: 10px;
    font-size: 0.85rem; margin-bottom: 1rem; text-align: left;
    display: flex; align-items: center; gap: 0.5rem;
}
.mobile-login-alert--info { background: #eff6ff; color: #1e40af; border-left: 3px solid #4f46e5; }
.mobile-login-alert--success { background: #f0fdf4; color: #166534; border-left: 3px solid #22c55e; }
.mobile-login-alert--error { background: #fef2f2; color: #991b1b; border-left: 3px solid #ef4444; }
.mobile-login-form {
    width: 100%; max-width: 360px; text-align: left;
}
.mobile-login-field {
    margin-bottom: 1rem;
}
.mobile-login-field label {
    display: block; font-size: 0.8rem; font-weight: 600; color: #374151;
    margin-bottom: 0.35rem;
}
.mobile-login-field input {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e2e8f0; border-radius: 12px;
    font-size: 1rem; font-family: inherit; background: white; color: #0f172a;
    -webkit-appearance: none; transition: border-color 0.2s;
}
.mobile-login-field input:focus {
    outline: none; border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.mobile-login-field input.field-error { border-color: #ef4444; }
.mobile-login-options {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem; font-size: 0.85rem;
}
.mobile-login-remember {
    display: flex; align-items: center; gap: 0.4rem; color: #475569;
}
.mobile-login-remember input { width: 16px; height: 16px; accent-color: #4f46e5; }
.mobile-login-forgot { color: #4f46e5; text-decoration: none; font-weight: 500; }
.mobile-login-btn {
    width: 100%; padding: 0.9rem; border: none; border-radius: 14px;
    background: #4f46e5; color: white; font-size: 1.05rem; font-weight: 700;
    font-family: inherit; cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 0.5rem; transition: transform 0.15s, background 0.2s;
    box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
.mobile-login-btn:active { transform: scale(0.97); background: #4338ca; }
.mobile-login-footer {
    margin-top: 2rem; text-align: center;
}
.mobile-login-footer p { font-size: 0.85rem; color: #64748b; margin-bottom: 0.3rem; }
.mobile-login-register {
    color: #4f46e5; text-decoration: none; font-weight: 700; font-size: 1rem;
}
.mobile-login-back {
    margin-top: 1.5rem; color: #94a3b8; text-decoration: none; font-size: 0.85rem;
    display: flex; align-items: center; gap: 0.3rem;
}
