:root {
  --accent: #ff3b69;
  --accent-dark: #d92952;
  --accent-soft: #fff0f4;
  --border: #e5e7eb;
  --ink: #20242c;
  --muted: #626b78;
  --panel: #ffffff;
  --success: #23864d;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: #fff; }
body { margin: 0; color: var(--ink); background: #fff; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; overflow-wrap: anywhere; }
body.ww_modal_open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(39, 111, 222, .42); outline-offset: 2px; }
.sr_only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site_header { position: fixed; inset: 0 0 auto; z-index: 1000; display: grid; grid-template-columns: 48px minmax(0, 1fr) minmax(108px, auto); align-items: center; min-height: 48px; padding-inline: 0 8px; color: #fff; background: var(--accent); border-bottom: 1px solid rgba(125, 16, 50, .24); }
.new_mode .site_header { grid-template-columns: minmax(0, 1fr) minmax(108px, auto); padding-inline-start: 12px; }
.site_title { min-width: 0; padding: 0 8px; overflow: hidden; font-size: 14px; font-weight: 800; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.menu_button { position: relative; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; }
.menu_button span { position: absolute; inset-inline-start: 14px; width: 20px; height: 2px; border-radius: 2px; background: #fff; transition: transform .2s, opacity .2s; }
.menu_button span:nth-child(1) { top: 16px; }
.menu_button span:nth-child(2) { top: 23px; }
.menu_button span:nth-child(3) { top: 30px; }
.menu_button[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu_button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu_button[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
.language_control { display: flex; min-width: 0; align-items: center; gap: 5px; font-size: 10px; }
.language_control label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.language_control select { width: 100%; max-width: 160px; min-height: 34px; padding: 4px 24px 4px 8px; color: #34252a; background: #fff; border: 1px solid rgba(255,255,255,.7); border-radius: 8px; font-size: 12px; }

.menu { position: fixed; inset-block: 0; inset-inline-start: 0; z-index: 999; width: min(86vw, 330px); background: #fafafa; box-shadow: 12px 0 34px rgba(20, 24, 32, .18); transform: translateX(-105%); transition: transform .22s ease; }
[dir="rtl"] .menu { transform: translateX(105%); box-shadow: -12px 0 34px rgba(20, 24, 32, .18); }
.menu.open { transform: translateX(0); }
.cate { height: 100%; padding: 62px 14px 24px; overflow-y: auto; }
.menu_header { padding: 14px; margin-bottom: 14px; background: #fff; border: 1px solid #ffd5df; border-radius: 12px; box-shadow: 0 4px 14px rgba(35, 41, 52, .06); }
.menu_kicker { margin-bottom: 4px; color: var(--accent-dark); font-size: 11px; font-weight: 800; }
.menu_baby { font-size: 19px; font-weight: 800; }
.menu_meta { margin-top: 4px; color: var(--muted); font-size: 12px; }
.menu_section { margin-top: 17px; }
.menu_section_title { margin: 0 2px 8px; color: #525b67; font-size: 12px; }
.cate_in { position: relative; display: block; width: 100%; min-height: 44px; margin: 7px 0; padding: 10px 34px 10px 13px; color: var(--ink); background: #fff; border: 1px solid #e4dbe0; border-radius: 9px; box-shadow: 0 2px 0 #eadfe4; font-size: 13px; font-weight: 750; text-align: start; }
.cate_in::after { position: absolute; inset-block-start: 50%; inset-inline-end: 13px; color: var(--accent); content: "›"; font-size: 19px; transform: translateY(-50%); }
[dir="rtl"] .cate_in::after { transform: translateY(-50%) scaleX(-1); }
.cate_in:hover { background: #fff7f9; }
.cate_in.danger { color: #b01f38; border-color: #f3c7cf; }
.black { position: fixed; inset: 0; z-index: 998; visibility: hidden; background: rgba(13, 17, 23, .52); opacity: 0; transition: opacity .2s, visibility .2s; }
.black.visible { visibility: visible; opacity: 1; }

.ww_top_tabs { position: fixed; inset: 48px 0 auto; z-index: 996; padding: 7px 10px; background: rgba(255,255,255,.97); border-bottom: 1px solid #f1dbe2; backdrop-filter: blur(8px); }
.ww_top_tabs_inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; max-width: 820px; margin: auto; }
.ww_top_tab { display: flex; min-width: 0; min-height: 38px; align-items: center; justify-content: center; padding: 6px 8px; color: #555f6c; background: #fff; border: 1px solid #ffd0dc; border-radius: 9px; font-size: 13px; font-weight: 800; text-align: center; }
.ww_top_tab.is-active { color: #fff; background: var(--accent); border-color: var(--accent); box-shadow: 0 2px 0 var(--accent-dark); }
.ww_page { width: 100%; }
.wrap, .temperament_page { width: min(100%, 820px); margin: 0 auto; padding: 112px 12px 74px; }

.today_card { padding: 17px; margin-bottom: 16px; background: #fff; border: 1px solid var(--border); border-radius: 13px; box-shadow: 0 8px 24px rgba(26, 32, 44, .07); }
.today_card.status_wonder { background: #fff7f9; border-color: #ffb8ca; }
.today_card.status_stable { background: #f7fff9; border-color: #bee4ca; }
.today_badge { display: inline-flex; min-height: 25px; align-items: center; padding: 0 10px; color: #56606d; background: #eef1f5; border-radius: 999px; font-size: 11px; font-weight: 800; }
.status_wonder .today_badge { color: #fff; background: var(--accent); }
.status_stable .today_badge { color: #fff; background: var(--success); }
.today_card h1 { margin: 11px 0 6px; font-size: clamp(20px, 4vw, 25px); line-height: 1.3; }
.today_meta { margin-bottom: 11px; color: var(--muted); font-size: 12px; }
.today_summary_label { display: none; margin-bottom: 4px; color: var(--accent-dark); font-size: 11px; font-weight: 850; }
.today_summary { color: #39414c; font-size: 13px; line-height: 1.65; }
.today_detail_button, .calendar_btn { min-height: 42px; padding: 9px 14px; border-radius: 9px; font-size: 13px; font-weight: 800; }
.today_detail_button { display: none; width: 100%; margin-top: 14px; color: #fff; background: var(--accent); border: 1px solid var(--accent); box-shadow: 0 2px 0 var(--accent-dark); }
.calendar_panel { display: grid; gap: 12px; justify-items: center; padding: 4px 0 12px; }
.calendar_legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px; color: #596270; font-size: 12px; }
.legend_item { display: inline-flex; align-items: center; gap: 6px; }
.legend_dot { width: 10px; height: 10px; background: #fff; border: 1px solid #cfd5dc; border-radius: 50%; }
.legend_dot.wonder_dot { background: #ffe9ef; border-color: #ffadc0; }
.legend_dot.today_dot { background: var(--accent); border-color: var(--accent); }
.calendar_btn { color: var(--ink); background: #fff; border: 1px solid #ff9db5; box-shadow: 0 2px 0 #ffd2dd; }
.month { display: none; padding: 14px 0 12px; margin: 0 0 20px; border-top: 1px solid #f0dfe5; }
.ym { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 5px 0 12px; font-size: 15px; font-weight: 850; }
.ym::before, .ym::after { width: 34px; height: 1px; background: #eed1da; content: ""; }
.days { position: relative; display: inline-flex; width: 14.2857%; min-height: 42px; align-items: center; justify-content: center; padding: 0; vertical-align: top; color: var(--ink); background: #fff; border: 0; border-right: 1px solid #f3e3e8; border-bottom: 1px solid #f3e3e8; font-size: 12px; }
.dayinfo { min-height: 31px; color: #515b67; background: #fff8fa; border-top: 1px solid #efccd6; font-size: 11px; font-weight: 850; }
.days.Sun { color: #cf244c; }
.days.Sat { color: #2d55b7; border-inline-end: 0; }
.days.is-blank { background: #fbfbfc; }
.days.wonder { color: #b91e40; background: var(--accent-soft); border-color: #ffd1dc; font-weight: 800; }
.days.wonder::before { position: absolute; inset: 5px 9px auto; height: 2px; background: #ffa6bb; border-radius: 999px; content: ""; }
.days.today_marker { z-index: 1; color: #fff !important; background: var(--accent) !important; box-shadow: inset 0 0 0 2px var(--accent-dark), 0 3px 8px rgba(255,59,105,.25); font-weight: 900; }
#last_day_info { margin: 22px auto; color: #555e69; font-size: 12px; text-align: center; }
.birth_bar { position: fixed; inset: auto 0 0; z-index: 997; display: flex; min-height: 30px; align-items: center; justify-content: space-between; gap: 12px; padding: 5px max(14px, env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left)); background: #fff; border-top: 1px solid #dfe2e7; font-size: 11px; }
.app_mode_domain { position: fixed; inset: 2px 52px auto; z-index: 1100; display: none; color: rgba(255,255,255,.8); font-size: 7px; text-align: center; pointer-events: none; }

.onboarding_page { min-height: 100vh; padding: 84px 16px 48px; background: linear-gradient(180deg, #fff8fa 0, #fff 390px); }
.date_container { width: min(100%, 520px); padding: clamp(22px, 6vw, 34px); margin: 0 auto; text-align: center; background: #fff; border: 1px solid #f0d7df; border-radius: 16px; box-shadow: 0 14px 36px rgba(53, 28, 38, .08); }
.welcome_mark { display: flex; width: 64px; height: 64px; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--success); border: 4px solid #9fd7b3; border-radius: 50%; font-size: 32px; font-weight: 900; }
.date_container h1 { margin: 0 0 9px; font-size: clamp(25px, 6vw, 32px); line-height: 1.2; }
.ww_info { margin: 7px 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.date_container input, #date_pick { width: 100%; min-height: 46px; padding: 10px 12px; margin-top: 20px; color: var(--ink); background: #fff; border: 1px solid #d9dde3; border-radius: 10px; text-align: start; }
#date_pick:not(.has-value) { color: #8b929c; }
#date_confirm_text { min-height: 20px; margin-top: 7px; color: var(--accent-dark); font-size: 12px; font-weight: 750; }
#ww_confirm { width: 100%; min-height: 46px; margin-top: 18px; color: #fff; background: #aeb5c0; border: 0; border-radius: 10px; font-weight: 850; }
#ww_confirm[data-confirm="true"] { background: var(--accent); box-shadow: 0 2px 0 var(--accent-dark); }
.date_picker_overlay { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 16px; }
.date_picker_overlay.is-open { display: flex; }
.date_picker_backdrop { position: absolute; inset: 0; background: rgba(13,17,23,.52); }
.date_picker { position: relative; z-index: 1; width: min(100%, 430px); padding: 14px; background: #fff; border: 1px solid #ead8df; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.24); }
.date_header { display: grid; grid-template-columns: 42px 42px minmax(0, 1fr) 42px 42px; align-items: center; gap: 3px; margin-bottom: 12px; }
.date_header button { min-height: 38px; color: var(--accent-dark); background: #fff7f9; border: 1px solid #ffd6df; border-radius: 8px; font-size: 20px; }
.date_header strong { min-width: 0; font-size: 14px; text-align: center; }
.date_grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.date_weekday, .date_blank, .date_day { display: flex; min-width: 0; min-height: 40px; align-items: center; justify-content: center; font-size: 12px; }
.date_weekday { color: #59616c; font-size: 11px; font-weight: 850; }
.date_weekday.is-sunday { color: #c32649; }
.date_weekday.is-saturday { color: #3157ae; }
.date_day { color: var(--ink); background: #fff; border: 0; border-radius: 8px; }
.date_day:hover, .date_day.is-selected { color: #fff; background: var(--accent); }
.date_picker_close { width: 100%; min-height: 40px; margin-top: 10px; color: #4c5561; background: #fff; border: 1px solid #d8dce2; border-radius: 9px; font-weight: 750; }

.seo_info { width: min(100%, 760px); padding-top: 22px; margin: 56px auto 0; color: #353d47; border-top: 1px solid #efdbe2; line-height: 1.72; }
.seo_info h2 { margin: 0 0 10px; font-size: 21px; line-height: 1.35; }
.seo_info h3 { margin: 21px 0 7px; color: var(--accent-dark); font-size: 15px; }
.seo_info p { margin: 0 0 10px; }
.seo_lead { font-size: 15px; font-weight: 650; }
.seo_info_section { padding-top: 3px; border-top: 1px solid #f5e6eb; }
.seo_faq_section details { padding: 12px 0; border-top: 1px solid #f2e4e9; }
.seo_faq_section summary { font-weight: 800; cursor: pointer; }
.seo_faq_section details p { margin-top: 8px; }

.ww_modal_overlay { position: fixed; inset: 0; z-index: 3000; display: flex; visibility: hidden; align-items: center; justify-content: center; padding: 18px; background: rgba(14,18,25,.52); opacity: 0; transition: opacity .16s, visibility .16s; }
.ww_modal_overlay.visible { visibility: visible; opacity: 1; }
.ww_modal_card { position: relative; display: flex; width: min(94vw, 560px); max-height: 88vh; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid #ffd2dd; border-radius: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.26); transform: translateY(8px); transition: transform .16s; }
.ww_modal_overlay.visible .ww_modal_card { transform: translateY(0); }
.ww_modal_close { position: absolute; inset-block-start: 9px; inset-inline-end: 9px; z-index: 1; width: 38px; height: 38px; color: #59616d; background: #f4f5f7; border: 0; border-radius: 9px; font-size: 24px; line-height: 1; }
.ww_modal_title { padding: 22px 52px 12px; margin: 0; font-size: 21px; line-height: 1.35; text-align: center; }
.ww_modal_content { padding: 0 20px 19px; overflow-y: auto; color: #39414b; font-size: 14px; line-height: 1.65; }
.ww_modal_content h3 { padding-top: 12px; margin: 16px 0 7px; color: var(--accent-dark); border-top: 1px solid #f0e1e6; font-size: 14px; }
.ww_modal_content h3:first-child { padding-top: 0; margin-top: 0; border-top: 0; }
.ww_modal_content p { margin: 0 0 12px; }
.ww_modal_content ul { padding-inline-start: 20px; margin: 0 0 13px; }
.ww_modal_content li { margin: 6px 0; }
.ww_modal_actions { display: flex; gap: 8px; padding: 13px 16px 16px; background: #fff8fa; border-top: 1px solid #f1e2e7; }
.ww_modal_button { flex: 1; min-height: 43px; border-radius: 9px; font-weight: 850; }
.ww_modal_button_primary { color: #fff; background: var(--accent); border: 1px solid var(--accent); box-shadow: 0 2px 0 var(--accent-dark); }
.ww_modal_button_secondary { color: #4e5763; background: #fff; border: 1px solid #d5d9df; }
.leap_tab_buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-bottom: 12px; }
.leap_tab_button { min-height: 41px; padding: 7px; color: #535c68; background: #fff; border: 1px solid #ffd0dc; border-radius: 9px; font-size: 12px; font-weight: 850; }
.leap_tab_button.is-active { color: #fff; background: var(--accent); border-color: var(--accent); }
.leap_tab_panel { display: none; }
.leap_tab_panel.is-active { display: block; }
.symptom_selector { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin: 12px 0; }
.symptom_button { min-width: 0; min-height: 42px; padding: 6px; color: var(--ink); background: #fff; border: 1px solid #dfe3e8; border-radius: 9px; font-size: 11px; font-weight: 800; }
.symptom_button.is-active { color: #b41f3f; background: var(--accent-soft); border-color: var(--accent); }
.symptom_check, .symptom_result { padding: 13px; background: #fff; border: 1px solid #e1e5ea; border-radius: 10px; }
.symptom_check h3, .symptom_result h3 { margin: 10px 0; color: var(--ink); border: 0; font-size: 16px; }
.symptom_score_summary { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 13px; }
.symptom_score_summary span { display: inline-flex; min-height: 27px; align-items: center; padding: 0 9px; color: #56606b; background: #f0f2f5; border-radius: 999px; font-size: 10px; font-weight: 850; }
.symptom_score_summary span.is-primary { color: #b41f3f; background: var(--accent-soft); }
.symptom_result_details { display: grid; gap: 8px; margin: 12px 0; }
.symptom_result_block { padding: 11px; background: #fafbfc; border: 1px solid #e9edf1; border-radius: 9px; }
.symptom_result_block h4 { margin: 0 0 6px; color: var(--ink); font-size: 12px; }
.symptom_result_block p { margin: 0; font-size: 12px; }
.symptom_result_block ul { margin: 0; }

.temperament_intro { padding: 17px; margin-bottom: 15px; background: #fff8fa; border: 1px solid #ffd0dc; border-radius: 12px; }
.temperament_intro h1 { margin: 0 0 8px; font-size: 23px; }
.temperament_intro p { margin: 0; color: #505965; font-size: 13px; line-height: 1.65; }
.temperament_question_card, .temperament_result { padding: 17px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 7px 22px rgba(27,33,43,.06); }
.temperament_question_kicker { margin-bottom: 7px; color: var(--accent-dark); font-size: 11px; font-weight: 850; }
.temperament_question_card h2, .temperament_result h2 { margin: 0 0 15px; font-size: 21px; line-height: 1.4; }
.temperament_options { display: grid; gap: 8px; }
.temperament_option { width: 100%; min-height: 45px; padding: 9px 12px; color: var(--ink); background: #fff; border: 1px solid #dde2e8; border-radius: 9px; font-size: 13px; font-weight: 700; text-align: start; }
.temperament_option:hover, .temperament_option.is-selected { color: #b51e40; background: var(--accent-soft); border-color: var(--accent); }
.temperament_actions { display: flex; gap: 8px; margin-top: 14px; }
.temperament_nav_button { flex: 1; min-height: 43px; padding: 7px; color: #4f5864; background: #fff; border: 1px solid #d2d7de; border-radius: 9px; font-size: 12px; font-weight: 850; }
.temperament_nav_button:disabled { cursor: not-allowed; opacity: .45; }
.temperament_nav_primary, .temperament_save_button { color: #fff; background: var(--accent); border-color: var(--accent); box-shadow: 0 2px 0 var(--accent-dark); }
.temperament_progress { margin-bottom: 12px; }
.temperament_progress_meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 800; }
.temperament_progress_bar { height: 8px; overflow: hidden; background: #edf0f4; border-radius: 999px; }
.temperament_progress_bar span { display: block; height: 100%; background: var(--accent); }
.temperament_lead { color: #313944; font-size: 14px; line-height: 1.7; }
.temperament_detail { color: #555e69; font-size: 13px; line-height: 1.75; }
.axis_panel { display: grid; gap: 10px; margin: 18px 0; }
.axis_row { padding: 13px; background: #fafbfc; border: 1px solid #e9edf1; border-radius: 9px; }
.axis_head, .axis_labels { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.axis_head { font-size: 13px; }
.axis_head span { padding: 3px 8px; color: #b51e40; background: var(--accent-soft); border-radius: 999px; font-size: 11px; font-weight: 800; }
.axis_bar { height: 7px; margin: 10px 0 8px; overflow: hidden; background: #e9edf2; border-radius: 999px; }
.axis_bar span { display: block; height: 100%; background: var(--accent); }
.axis_labels { color: #68717d; font-size: 11px; }
.temperament_result h3 { margin: 18px 0 8px; color: var(--accent-dark); font-size: 15px; }
.temperament_result li { margin: 6px 0; line-height: 1.55; }
.temperament_insight_grid { display: grid; gap: 9px; margin: 4px 0 16px; }
.temperament_insight_card { padding: 12px; background: #fff; border: 1px solid #e9edf1; border-radius: 9px; }
.temperament_insight_card h3 { margin: 0 0 7px; color: var(--ink); font-size: 13px; }
.temperament_insight_card ul { padding-inline-start: 18px; margin: 0; }
.temperament_insight_card li { color: #4c5662; font-size: 12px; }
.temperament_observation, .temperament_notice { padding: 11px 12px; color: #505a66; border-radius: 9px; font-size: 12px; line-height: 1.6; }
.temperament_observation { display: grid; gap: 4px; background: #fff8fa; border: 1px solid #ffd7e1; }
.temperament_observation strong { color: var(--accent-dark); }
.temperament_notice { background: #f4f6f8; }
.app_icon_dialog { text-align: center; }
.app_icon_preview { display: block; width: 180px; height: 180px; max-width: 64vw; max-height: 64vw; margin: 0 auto 14px; object-fit: cover; background: #fff8fa; border: 1px solid #ead7de; border-radius: 12px; }
.app_icon_choose { min-height: 42px; padding: 8px 18px; color: #fff; background: var(--accent); border: 0; border-radius: 9px; font-weight: 800; }
.app_icon_choose.is-loading { cursor: wait; opacity: .72; }
.app_icon_choose.is-complete { background: #247a50; }

[dir="rtl"] .site_header { grid-template-columns: minmax(108px, auto) minmax(0, 1fr) 48px; }
[dir="rtl"] .new_mode .site_header { grid-template-columns: minmax(108px, auto) minmax(0, 1fr); }
[dir="rtl"] .language_control { grid-column: 1; grid-row: 1; }
[dir="rtl"] .site_title { grid-column: 2; grid-row: 1; }
[dir="rtl"] .menu_button { grid-column: 3; grid-row: 1; }
[dir="rtl"] .date_header button, [dir="rtl"] .cate_in::after { direction: ltr; }
[dir="rtl"] .days, [dir="rtl"] .date_day, [dir="rtl"] .today_meta, [dir="rtl"] .birth_bar { unicode-bidi: isolate; }

@media (max-width: 560px) {
  .site_header { grid-template-columns: 44px minmax(0, 1fr) 112px; }
  .site_title { font-size: 12px; }
  .language_control select { max-width: 112px; font-size: 11px; }
  .wrap, .temperament_page { padding-inline: 9px; }
  .month { margin-inline: -2px; }
  .days { min-height: 40px; }
  .symptom_selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ww_modal_overlay { align-items: flex-end; padding: 8px; }
  .ww_modal_card { width: 100%; max-height: 91vh; }
  .ww_modal_content { padding-inline: 15px; font-size: 13px; }
  .temperament_actions { flex-wrap: wrap; }
  .temperament_nav_button { min-width: 120px; }
}

@media (max-width: 360px) {
  .site_title { padding-inline: 2px; font-size: 11px; }
  .date_header { grid-template-columns: 36px 36px minmax(0, 1fr) 36px 36px; }
  .date_header button { min-height: 36px; padding: 0; }
  .symptom_selector { grid-template-columns: 1fr; }
  .birth_bar { font-size: 10px; }
}
