:root {
  --ink: #18201d;
  --muted: #68716d;
  --paper: #f6f4ef;
  --card: #ffffff;
  --line: #dfded8;
  --accent: #23483b;
  --accent-soft: #dfe9e4;
  --danger: #9a2e2e;
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; background: var(--paper); }
a { color: inherit; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.shell { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(680px, calc(100% - 32px)); }

.hero { padding: 32px 0 24px; text-align: center; }
.eyebrow { margin: 0 0 14px; font-size: .75rem; font-weight: 800; letter-spacing: .16em; color: var(--accent); }
.hero h1, .form-page h1, .success-page h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
.hero h1 { font-size: clamp(2rem, 8.8vw, 5.2rem); line-height: .98; }
.hero-copy { margin: 12px auto 18px; max-width: 680px; font-size: clamp(1rem, 4vw, 1.3rem); line-height: 1.45; color: var(--muted); }
.hero-copy strong { color: var(--ink); font-weight: 650; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 750; border: 1px solid transparent; cursor: pointer; }
.button-primary { color: white; background: var(--accent); }
.button-secondary { color: var(--accent); background: var(--accent-soft); }
.button-ghost { background: transparent; border-color: var(--line); }
.button-full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.main-content { padding-bottom: 54px; }
.section-heading { display: flex; justify-content: space-between; gap: 16px; align-items: end; border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 16px; }
.section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 6.5vw, 3.1rem); font-weight: 500; }
.count { flex: none; color: var(--muted); font-size: .9rem; }

.profiles-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.profile-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: 0 8px 30px rgba(24,32,29,.05); }
.profile-top { display: flex; align-items: center; gap: 14px; }
.profile-top h3 { margin: 0; font-size: 1.15rem; }
.avatar { width: 76px; height: 76px; flex: none; border-radius: 50%; object-fit: cover; background: var(--accent-soft); }
.avatar-placeholder { display: grid; place-items: center; font-weight: 800; color: var(--accent); }
.owner-link { display: inline-block; margin-top: 5px; color: var(--accent); font-size: .86rem; font-weight: 750; }
.message { margin: 16px 0; white-space: pre-line; line-height: 1.62; color: #323a37; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { padding: 7px 10px; border-radius: 999px; background: var(--paper); text-decoration: none; font-size: .83rem; font-weight: 650; }
.empty-state { padding: 48px 20px; text-align: center; background: var(--card); border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state .avatar { margin: 0 auto 18px; }
.empty-state h3 { margin-bottom: 6px; }
.empty-state p { max-width: 420px; margin: 0 auto 20px; color: var(--muted); }
.footer { padding: 30px 0 42px; border-top: 1px solid var(--line); text-align: center; color: var(--muted); font-size: .85rem; }
.footer-credit { display: inline-block; margin-left: .25em; }
.footer-credit a { color: var(--accent); font-weight: 700; text-underline-offset: 3px; }

.form-page, .success-page { padding: 34px 0 70px; }
.back-link { display: inline-block; margin-bottom: 50px; color: var(--muted); text-decoration: none; }
.form-page h1, .success-page h1 { font-size: clamp(2.4rem, 10vw, 4.5rem); line-height: .98; }
.form-intro, .success-page > p { color: var(--muted); line-height: 1.6; }
.form-intro { margin-bottom: 30px; }
.profile-form { margin-top: 28px; }
.field { margin-bottom: 22px; }
.field label, fieldset legend { display: block; margin-bottom: 8px; font-weight: 750; }
.field label span, fieldset legend span { color: var(--muted); font-size: .82rem; font-weight: 500; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: white; padding: 14px 15px; outline: none; color: var(--ink); }
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(35,72,59,.1); }
textarea { resize: vertical; min-height: 130px; }
small, .privacy-note { display: block; color: var(--muted); margin-top: 7px; line-height: 1.5; }
.char-counter { text-align: right; font-variant-numeric: tabular-nums; }
fieldset { margin: 32px 0; padding: 24px 18px 4px; border: 1px solid var(--line); border-radius: 18px; }
fieldset legend { padding: 0 8px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.alert { margin: 24px 0; padding: 14px 16px; border-radius: 14px; background: #f8dddd; color: #752525; }
.delete-form { margin-top: 45px; padding-top: 26px; border-top: 1px solid var(--line); text-align: center; }
.danger-link { border: 0; background: transparent; color: var(--danger); text-decoration: underline; cursor: pointer; }

.success-page { text-align: center; padding-top: 70px; }
.success-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 900; font-size: 1.5rem; }
.recovery-box { margin: 34px 0 20px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.recovery-box h2 { margin-top: 0; font-size: 1.2rem; }
.recovery-box p { color: var(--muted); line-height: 1.55; }
.copy-status { min-height: 22px; margin-bottom: 0; color: var(--accent) !important; font-weight: 700; }
.warning-text { font-size: .9rem; }
.success-page .button-row { justify-content: center; }

@media (min-width: 700px) {
  .hero { padding-top: 58px; padding-bottom: 44px; }
  .profiles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .profile-card { padding: 24px; }
}

@media (min-width: 1020px) {
  .profiles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


/* CTA siempre accesible en móvil */
.floating-create-button { display: none; }

/* Selector y editor de fotografía */
.photo-input-row { display: flex; align-items: center; gap: 14px; }
.photo-preview-wrap { width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%; overflow: hidden; background: var(--accent-soft); border: 1px solid var(--line); }
.photo-preview { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-select-button { display: inline-flex !important; align-items: center; justify-content: center; min-height: 46px; margin: 0 !important; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--accent); cursor: pointer; font-weight: 750 !important; text-align: center; }
.visually-hidden-file { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.photo-editor[hidden] { display: none; }
.photo-editor { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: flex-end; justify-content: center; background: rgba(10, 14, 12, .72); backdrop-filter: blur(8px); }
.photo-editor-open { overflow: hidden; }
.photo-editor-panel { width: 100%; max-height: 96dvh; overflow: auto; background: #111513; color: white; border-radius: 24px 24px 0 0; box-shadow: 0 -12px 50px rgba(0,0,0,.25); }
.photo-editor-header { position: sticky; top: 0; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; min-height: 62px; padding: 8px 12px; background: rgba(17,21,19,.96); border-bottom: 1px solid rgba(255,255,255,.1); }
.photo-editor-header h2 { margin: 0; font-size: 1rem; text-align: center; white-space: nowrap; }
.editor-text-button { min-height: 44px; padding: 0 8px; border: 0; background: transparent; color: rgba(255,255,255,.78); cursor: pointer; }
.editor-text-button:first-child { justify-self: start; }
.editor-confirm { justify-self: end; color: white; font-weight: 800; }
.photo-editor-body { padding: 20px 20px calc(26px + env(safe-area-inset-bottom)); text-align: center; }
.photo-editor-body > p { margin: 0 0 18px; color: rgba(255,255,255,.68); font-size: .92rem; }
.crop-window { position: relative; width: min(78vw, 360px); aspect-ratio: 1; margin: 0 auto; overflow: hidden; border-radius: 50%; background: #050706; border: 2px solid rgba(255,255,255,.92); box-shadow: 0 0 0 999px rgba(0,0,0,.14); touch-action: none; user-select: none; cursor: grab; }
.crop-window:active { cursor: grabbing; }
.crop-window img { position: absolute; max-width: none; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.zoom-control { display: grid; grid-template-columns: 24px 1fr 24px; align-items: center; gap: 12px; width: min(88vw, 430px); margin: 26px auto 0; }
.zoom-control span { font-size: 1.4rem; color: rgba(255,255,255,.8); }
.zoom-control input[type="range"] { appearance: none; width: 100%; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.3); box-shadow: none; }
.zoom-control input[type="range"]::-webkit-slider-thumb { appearance: none; width: 24px; height: 24px; border-radius: 50%; background: white; box-shadow: 0 1px 8px rgba(0,0,0,.35); }
.zoom-control input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border: 0; border-radius: 50%; background: white; box-shadow: 0 1px 8px rgba(0,0,0,.35); }

@media (max-width: 699px) {
  .home-page { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .hero { display: flex; align-items: center; gap: 14px; padding-top: 20px; padding-bottom: 16px; text-align: left; }
  .hero-text { min-width: 0; }
  .hero .eyebrow { margin-bottom: 7px; font-size: .66rem; }
  .hero h1 { font-size: clamp(1.85rem, 8.6vw, 2.4rem); line-height: .98; }
  .hero-copy { margin: 9px 0 0; font-size: .95rem; line-height: 1.38; }
  .hero-create { display: none; }
  .section-heading .eyebrow { display: none; }
  .section-heading { padding-top: 14px; margin-bottom: 12px; }
  .section-heading h2 { font-size: 1.55rem; }
  .count { font-size: .82rem; }
  .profiles-grid { gap: 10px; }
  .profile-card { padding: 16px; border-radius: 18px; }
  .avatar { width: 72px; height: 72px; }
  .profile-top h3 { font-size: 1.18rem; }
  .message { margin-top: 14px; }
  .floating-create-button { position: fixed; z-index: 50; left: 16px; right: 16px; bottom: calc(12px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: center; min-height: 54px; border-radius: 999px; background: var(--accent); color: white; text-decoration: none; font-weight: 800; box-shadow: 0 10px 32px rgba(24,32,29,.28); }
  .footer { padding-bottom: 16px; }
  .form-page { padding-top: 22px; }
  .back-link { margin-bottom: 28px; }
  .form-page h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
}

@media (min-width: 700px) {
  .photo-editor { align-items: center; padding: 24px; }
  .photo-editor-panel { width: min(620px, 100%); border-radius: 24px; }
  .crop-window { width: min(52vw, 360px); }
}

/* Reencuentro y disponibilidad */
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.owner-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.floating-actions { display: none; }
.availability-prompt, .availability-edit-card { margin-top: 28px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.availability-prompt h2, .availability-edit-card h2 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.availability-prompt p:not(.eyebrow), .availability-edit-card p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.availability-edit-card { display: grid; gap: 16px; text-align: left; }
.availability-edit-card .eyebrow { margin-bottom: 7px; }

.availability-page { padding: 34px 0 70px; }
.availability-page h1, .meeting-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; font-size: clamp(2.35rem, 10vw, 4.6rem); line-height: .98; }
.availability-form { margin-top: 28px; }
.availability-block { margin: 0 0 18px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.availability-block h2 { margin: 0 0 6px; font-size: 1.08rem; }
.availability-help { margin: 0 0 16px; color: var(--muted); line-height: 1.5; font-size: .92rem; }
.availability-mode-grid { display: grid; gap: 10px; }
.mode-card { position: relative; display: grid; gap: 5px; padding: 16px 16px 16px 48px; border: 1px solid var(--line); border-radius: 16px; cursor: pointer; background: var(--paper); }
.mode-card:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(35,72,59,.08); background: #f8fbf9; }
.mode-card input { position: absolute; left: 16px; top: 18px; width: 20px; height: 20px; accent-color: var(--accent); }
.mode-card-title { font-weight: 800; }
.mode-card-copy { color: var(--muted); line-height: 1.42; font-size: .9rem; }
.month-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.month-chip, .status-option, .day-filter a { border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); text-decoration: none; cursor: pointer; font-weight: 700; }
.month-chip { min-height: 42px; padding: 0 13px; }
.month-chip.is-selected { background: var(--accent); border-color: var(--accent); color: white; }
.status-picker { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 14px; scrollbar-width: thin; }
.status-option { flex: 0 0 auto; min-height: 40px; padding: 0 12px; font-size: .86rem; }
.status-option.is-selected { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.calendar-shell { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; }
.calendar-nav { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); }
.calendar-nav strong { text-align: center; }
.calendar-arrow { height: 48px; border: 0; background: transparent; color: var(--accent); font-size: 1.2rem; cursor: pointer; }
.calendar-arrow:disabled { opacity: .22; cursor: default; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.calendar-weekdays { padding: 8px 8px 2px; color: var(--muted); font-size: .72rem; font-weight: 800; text-align: center; }
.calendar-weekdays span { padding: 6px 0; }
.calendar-days { gap: 4px; padding: 6px 8px 12px; }
.calendar-day, .calendar-blank { aspect-ratio: 1; min-width: 0; }
.calendar-day { display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-weight: 700; }
.calendar-day:hover { background: var(--paper); }
.calendar-day.is-past { opacity: .2; cursor: default; }
.calendar-day.status-available { background: var(--accent); color: white; }
.calendar-day.status-maybe { background: #e6d9a9; color: #4e4011; }
.calendar-day.status-unavailable { background: #f2d7d7; color: #7d2a2a; text-decoration: line-through; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 12px 16px; margin-top: 12px; color: var(--muted); font-size: .78rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.legend-available { background: var(--accent); }
.legend-maybe { background: #d9c36b; }
.legend-unavailable { background: #d88989; }
.check-row { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.check-row input { width: 20px; height: 20px; flex: none; margin-top: 1px; accent-color: var(--accent); }
.check-row span { line-height: 1.45; }
.availability-delete-form { margin-top: 24px; }

.meeting-hero { padding: 34px 0 24px; }
.meeting-hero .back-link { margin-bottom: 34px; }
.meeting-hero > p:last-child { max-width: 700px; color: var(--muted); line-height: 1.6; }
.meeting-main { padding-bottom: 50px; }
.meeting-summary-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; }
.meeting-summary-bar > div { padding: 16px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.meeting-summary-bar strong { display: block; font-size: 1.5rem; }
.meeting-summary-bar span { display: block; margin-top: 2px; color: var(--muted); font-size: .82rem; }
.day-filter { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 18px; }
.day-filter a { flex: 0 0 auto; padding: 9px 13px; font-size: .86rem; }
.day-filter a.is-active { background: var(--accent); border-color: var(--accent); color: white; }
.meeting-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin: 12px 0 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.meeting-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 6vw, 3rem); font-weight: 500; }
.meeting-heading > p { margin: 0; color: var(--muted); font-size: .86rem; }
.meeting-results { display: grid; gap: 12px; }
.meeting-date-card { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 10px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: 0 8px 30px rgba(24,32,29,.04); }
.meeting-date-best { border-color: #a8bdb4; box-shadow: 0 10px 34px rgba(35,72,59,.08); }
.meeting-rank { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--muted); font-weight: 800; font-size: .82rem; }
.meeting-date-best .meeting-rank { background: var(--accent); color: white; }
.meeting-date-header { display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.meeting-date-header h3 { margin: 4px 0 0; font-size: 1.03rem; text-transform: capitalize; }
.best-badge { display: inline-block; color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.potential-count { flex: none; font-size: 1.35rem; color: var(--accent); }
.availability-bars { display: flex; flex-wrap: wrap; gap: 7px; margin: 13px 0 0; }
.availability-stat { padding: 6px 9px; border-radius: 999px; font-size: .78rem; }
.stat-yes { background: var(--accent-soft); color: var(--accent); }
.stat-maybe { background: #f0e8c7; color: #5e4b12; }
.stat-no { background: #f7e5e5; color: #862d2d; }
.people-details { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 10px; }
.people-details summary { color: var(--accent); font-weight: 750; cursor: pointer; }
.people-columns { display: grid; gap: 12px; padding-top: 12px; }
.people-columns > div { padding: 12px; border-radius: 14px; background: var(--paper); }
.people-columns h4 { margin: 0 0 5px; font-size: .84rem; }
.people-columns p { margin: 0; color: #38413d; line-height: 1.5; font-size: .88rem; }
.private-count, .muted-text { color: var(--muted) !important; font-style: italic; }
.meeting-empty { margin-top: 10px; }

@media (max-width: 699px) {
  .hero-actions { display: none; }
  .home-page { padding-bottom: calc(142px + env(safe-area-inset-bottom)); }
  .floating-actions { position: fixed; z-index: 50; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 8px; padding: 7px; border-radius: 22px; background: rgba(246,244,239,.94); border: 1px solid rgba(223,222,216,.9); box-shadow: 0 12px 34px rgba(24,32,29,.22); backdrop-filter: blur(14px); }
  .floating-actions .floating-create-button, .floating-meeting-button { position: static; display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 10px; border-radius: 16px; text-decoration: none; font-size: .85rem; font-weight: 800; box-shadow: none; }
  .floating-actions .floating-create-button { background: var(--accent); color: white; }
  .floating-meeting-button { background: var(--accent-soft); color: var(--accent); }
  .owner-actions { gap: 8px; }
  .availability-page { padding-top: 22px; }
  .availability-page .back-link { margin-bottom: 28px; }
  .availability-block { padding: 16px; border-radius: 18px; }
  .mode-card { padding-right: 12px; }
  .month-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .month-chip { flex: 0 0 auto; }
  .calendar-days { gap: 2px; padding-inline: 5px; }
  .calendar-day { font-size: .86rem; }
  .meeting-hero { padding-top: 22px; }
  .meeting-hero .back-link { margin-bottom: 28px; }
  .meeting-heading { align-items: start; }
  .meeting-heading > p { display: none; }
  .meeting-date-card { grid-template-columns: 30px minmax(0,1fr); padding: 14px 12px; }
  .meeting-date-header { align-items: center; }
  .meeting-date-header h3 { font-size: .98rem; line-height: 1.3; }
  .potential-count { font-size: 1.15rem; }
}

@media (min-width: 700px) {
  .availability-mode-grid { grid-template-columns: repeat(3, 1fr); }
  .availability-edit-card { grid-template-columns: 1fr auto; align-items: center; }
  .meeting-summary-bar { max-width: 560px; }
  .meeting-date-card { grid-template-columns: 40px minmax(0,1fr); padding: 20px; }
  .people-columns { grid-template-columns: repeat(3, 1fr); }
}

/* Pantalla posterior a crear perfil: la disponibilidad es el siguiente paso. */
.success-page-compact {
  max-width: 660px;
}

.success-page-compact .availability-prompt-primary {
  margin-top: 28px;
  padding: clamp(22px, 5vw, 32px);
  border-color: #d7d2c8;
}

.availability-prompt-primary h2 {
  font-size: clamp(1.7rem, 6vw, 2.35rem);
  line-height: 1.08;
}

.availability-main-action {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.success-page-compact .button-row-subtle {
  margin-top: 14px;
}

@media (max-width: 640px) {
  .success-page-compact {
    padding-top: 34px;
  }

  .success-page-compact h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .success-page-compact .availability-prompt-primary {
    margin-top: 22px;
    padding: 20px 18px;
  }

  .success-page-compact .availability-main-action {
    min-height: 54px;
    font-size: 1rem;
  }
}

/* Disponibilidad en móvil: sin scroll horizontal. */
@media (max-width: 699px) {
  /* Los meses se muestran en dos columnas, como botones grandes y fáciles de tocar. */
  .month-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .month-chip {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 7px 10px;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  /* Las opciones para marcar días/excepciones también se ven completas, sin carrusel lateral. */
  .status-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    margin-bottom: 14px;
  }

  .status-option {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 7px 9px;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }
}
