/* ============================================
   リセット & ベース
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* ─── パレット：淡いスレートブルー系 ─── */
    --primary:        #5B8FB9;   /* メインブルー */
    --primary-dark:   #3E6D98;
    --primary-light:  #EBF3FB;
    --primary-mid:    #B8D4EC;
    --accent:         #7BA7CC;

    --success:        #5BA08A;
    --success-light:  #E8F5F0;
    --warning:        #C89A4A;
    --warning-light:  #FDF5E4;
    --danger:         #C0616B;
    --danger-light:   #FCEEF0;

    --gray-50:        #F7F9FC;
    --gray-100:       #EDF1F7;
    --gray-200:       #DDE4EF;
    --gray-300:       #C5CFDE;
    --gray-400:       #96A4B8;
    --gray-500:       #6B7B92;
    --gray-600:       #49596E;
    --gray-800:       #2C3A4D;
    --gray-900:       #1A2535;

    /* 曜日色 */
    --sat-bg:         #EDF3FB;
    --sat-text:       #3660A0;
    --hol-bg:         #FBEDEE;
    --hol-text:       #A83540;

    /* ON/OFF トグル */
    --time-am-on:     #DAEAF8;
    --time-am-border: #5B8FB9;
    --time-am-text:   #2E5F8A;
    --time-pm-on:     #D8F0E8;
    --time-pm-border: #4A9478;
    --time-pm-text:   #1E5E47;
    --time-ev-on:     #E8E0F5;
    --time-ev-border: #7B5EA7;
    --time-ev-text:   #4B2E8A;
    --time-off-bg:    #F0F2F5;
    --time-off-border:#C5CFDE;
    --time-off-text:  #96A4B8;

    --radius:         10px;
    --radius-sm:      6px;
    --shadow-sm:      0 1px 3px rgba(44,58,77,.08);
    --shadow:         0 2px 8px rgba(44,58,77,.10);
    --shadow-md:      0 4px 16px rgba(44,58,77,.12);
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP',
                 Meiryo, sans-serif;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.65;
    min-height: 100vh;
}

/* ============================================
   ヘッダー
   ============================================ */
.site-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(44,58,77,.18);
}
.site-header a { color: #fff; text-decoration: none; }
.site-header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.site-header .tagline {
    font-size: .78rem;
    opacity: .8;
    letter-spacing: .05em;
}

/* ============================================
   レイアウト
   ============================================ */
.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 16px;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    padding: 22px;
    margin-bottom: 16px;
}

.section-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary-dark);
    border-left: 3px solid var(--primary);
    padding-left: 10px;
    margin-bottom: 14px;
    letter-spacing: .02em;
}

/* ============================================
   フォーム共通
   ============================================ */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-600);
    letter-spacing: .02em;
}
.form-group label .required {
    color: var(--danger);
    font-size: .72rem;
    margin-left: 5px;
    font-weight: 700;
}

input[type="text"],
select,
textarea {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--gray-800);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
select { cursor: pointer; }
input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91,143,185,.15);
}
textarea { resize: vertical; min-height: 80px; }

/* ============================================
   ボタン
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background .15s, box-shadow .15s, transform .1s;
    white-space: nowrap;
    letter-spacing: .02em;
}
.btn:active { transform: scale(.97); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(91,143,185,.35);
}
.btn-primary:hover { box-shadow: 0 4px 12px rgba(91,143,185,.45); }

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #3E8068 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(91,160,138,.35);
}
.btn-success:hover { box-shadow: 0 4px 12px rgba(91,160,138,.45); }

.btn-danger    { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #A84E57; }

.btn-outline   {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary-mid);
}
.btn-outline:hover { background: var(--primary-light); border-color: var(--primary); }

.btn-ghost {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-200); }

.btn-sm  { padding: 6px 12px; font-size: .8rem; border-radius: var(--radius-sm); }
.btn-lg  { padding: 14px 30px; font-size: 1rem; border-radius: var(--radius); }
.btn-block { width: 100%; display: flex; }

/* ============================================
   カレンダー（月ナビゲーション）
   ============================================ */
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}
.cal-nav-btn {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--gray-600);
    transition: background .1s;
    flex-shrink: 0;
}
.cal-nav-btn:hover { background: var(--primary-light); color: var(--primary-dark); border-color: var(--primary-mid); }
.cal-nav-btn:disabled { opacity: .35; cursor: not-allowed; }

.cal-month-tabs {
    display: flex;
    gap: 4px;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 4px;
    justify-content: flex-start;
}
.cal-month-tabs::-webkit-scrollbar { display: none; }
.cal-tab {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-500);
    transition: all .12s;
    white-space: nowrap;
}
.cal-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 2px 6px rgba(91,143,185,.3);
}
.cal-tab:hover:not(.active) { background: var(--primary-light); border-color: var(--primary-mid); color: var(--primary-dark); }

.cal-month { display: none; }
.cal-month.visible { display: block; }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-dow {
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    padding: 6px 2px;
    color: var(--gray-500);
    letter-spacing: .03em;
}
.cal-dow:first-child { color: var(--hol-text); }
.cal-dow:last-child  { color: var(--sat-text); }

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    cursor: pointer;
    user-select: none;
    border: 1.5px solid transparent;
    transition: all .1s;
    min-width: 0;
    color: var(--gray-800);
    background: #fff;
}
.cal-day:hover:not(.cal-empty):not(.cal-past) {
    background: var(--primary-light);
    border-color: var(--primary-mid);
    color: var(--primary-dark);
}
.cal-day.cal-empty  { cursor: default; background: transparent; }
.cal-day.cal-past   { color: var(--gray-300); cursor: not-allowed; background: transparent; }
.cal-day.cal-sat    { color: var(--sat-text); background: var(--sat-bg); }
.cal-day.cal-hol    { color: var(--hol-text); background: var(--hol-bg); }
.cal-day.cal-today  { font-weight: 700; box-shadow: inset 0 0 0 1.5px var(--primary-mid); }

.cal-day.selected {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary-dark) !important;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(91,143,185,.4) !important;
}

/* ============================================
   選択済み日程リスト
   ============================================ */
.bulk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 12px;
    align-items: center;
}
.bulk-actions span {
    font-size: .78rem;
    color: var(--gray-500);
    font-weight: 600;
    white-space: nowrap;
}

.slot-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 2px;
}

.slot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--gray-200);
    flex-wrap: wrap;
    transition: border-color .1s;
}
.slot-item:hover { border-color: var(--primary-mid); }
.slot-item.day-sat { background: var(--sat-bg); border-color: #C8DDEF; }
.slot-item.day-hol { background: var(--hol-bg); border-color: #EFCACC; }

.slot-date {
    font-weight: 700;
    font-size: .88rem;
    min-width: 88px;
    color: var(--gray-800);
}
.slot-date.day-sat { color: var(--sat-text); }
.slot-date.day-hol { color: var(--hol-text); }

/* ── 時間帯トグル ── */
.slot-times {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.slot-times input[type="checkbox"] { display: none; }

/* OFF状態（デフォルト）: 薄いグレー＋取り消し線っぽい雰囲気 */
.slot-times label {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 11px;
    border-radius: 20px;
    border: 1.5px dashed var(--time-off-border);
    background: var(--time-off-bg);
    color: var(--time-off-text);
    transition: all .12s;
    user-select: none;
    letter-spacing: .02em;
    text-decoration: line-through;
    text-decoration-color: var(--time-off-border);
}
.slot-times label:hover {
    border-color: var(--gray-400);
    color: var(--gray-600);
    background: var(--gray-200);
    text-decoration: none;
}

/* ON状態 */
.slot-times label.checked-am {
    background: var(--time-am-on);
    border: 1.5px solid var(--time-am-border);
    color: var(--time-am-text);
    text-decoration: none;
}
.slot-times label.checked-pm {
    background: var(--time-pm-on);
    border: 1.5px solid var(--time-pm-border);
    color: var(--time-pm-text);
    text-decoration: none;
}
.slot-times label.checked-ev {
    background: var(--time-ev-on);
    border: 1.5px solid var(--time-ev-border);
    color: var(--time-ev-text);
    text-decoration: none;
}

.slot-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    font-size: 1rem;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    transition: all .1s;
}
.slot-remove:hover { color: var(--danger); background: var(--danger-light); }

/* ============================================
   出欠テーブル
   ============================================ */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

table.attendance {
    border-collapse: collapse;
    min-width: 100%;
    font-size: .85rem;
}

table.attendance th,
table.attendance td {
    padding: 9px 10px;
    border: 1px solid var(--gray-200);
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

table.attendance th:first-child,
table.attendance td:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
    min-width: 100px;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}
table.attendance thead th:first-child {
    z-index: 3;
    background: var(--gray-100);
}

table.attendance thead th {
    background: var(--gray-100);
    font-weight: 700;
    font-size: .76rem;
    color: var(--gray-600);
}
table.attendance thead .th-date { font-weight: 700; color: var(--gray-800); }
table.attendance thead .th-time { font-size: .7rem; color: var(--gray-500); margin-top: 1px; }

table.attendance thead .col-sat { background: var(--sat-bg); }
table.attendance thead .col-sat .th-date { color: var(--sat-text); }
table.attendance thead .col-hol { background: var(--hol-bg); }
table.attendance thead .col-hol .th-date { color: var(--hol-text); }

table.attendance .col-best { background: #FFFBEA !important; }

.res-maru  { color: var(--success);  font-size: 1.05rem; font-weight: 700; }
.res-sank  { color: var(--warning);  font-size: 1.05rem; font-weight: 700; }
.res-batsu { color: var(--gray-300); font-size: 1.05rem; }

tr.tally-row td {
    background: var(--gray-50);
    font-weight: 700;
    font-size: .78rem;
    color: var(--gray-600);
}
tr.score-row td {
    background: var(--primary-light);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: .82rem;
}

/* 開催ライン行 */
tr.threshold-row td {
    background: #F0FDF4;
    font-size: .8rem;
    font-weight: 700;
    color: var(--success);
    border-top: 2px solid #BBF7D0;
    text-align: center;
}
tr.threshold-row td:first-child { text-align: left; color: var(--gray-600); }
.threshold-ok  { font-size: 1rem; }
.threshold-ng  { font-size: .75rem; font-weight: 700; color: var(--danger); }

/* 開催ラインバッジ（イベント情報） */
.threshold-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #DCFCE7;
    color: #166534;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid #86EFAC;
}

/* ============================================
   回答フォーム ○△×
   ============================================ */
.answer-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.answer-form-table {
    border-collapse: collapse;
    min-width: 100%;
    font-size: .875rem;
}
table.answer-form-table th,
table.answer-form-table td {
    border: 1px solid var(--gray-200);
    padding: 9px 8px;
    text-align: center;
    vertical-align: middle;
}
table.answer-form-table th:first-child,
table.answer-form-table td:first-child {
    text-align: left;
    background: var(--gray-50);
    font-weight: 700;
    font-size: .82rem;
    white-space: nowrap;
    position: sticky;
    left: 0;
    z-index: 1;
}
table.answer-form-table thead th {
    background: var(--gray-100);
    font-size: .76rem;
    font-weight: 700;
    color: var(--gray-600);
}
table.answer-form-table thead .col-sat { background: var(--sat-bg); }
table.answer-form-table thead .col-hol { background: var(--hol-bg); }

/* ○△× ラジオボタン */
.resp-group {
    display: flex;
    gap: 3px;
    justify-content: center;
}
.resp-group input[type="radio"] { display: none; }
.resp-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    transition: all .1s;
    user-select: none;
    color: var(--gray-300);
}
.resp-group .lbl-maru:hover  { background: var(--success-light); border-color: var(--success); color: var(--success); }
.resp-group .lbl-sank:hover  { background: var(--warning-light); border-color: var(--warning); color: var(--warning); }
.resp-group .lbl-batsu:hover { background: var(--gray-100); border-color: var(--gray-400); color: var(--gray-500); }

.resp-group input:checked + .lbl-maru  { background: var(--success-light); border-color: var(--success); color: var(--success); box-shadow: 0 0 0 2px rgba(91,160,138,.2); }
.resp-group input:checked + .lbl-sank  { background: var(--warning-light); border-color: var(--warning); color: var(--warning); box-shadow: 0 0 0 2px rgba(200,154,74,.2); }
.resp-group input:checked + .lbl-batsu { background: var(--gray-100); border-color: var(--gray-400); color: var(--gray-500); box-shadow: 0 0 0 2px rgba(150,164,184,.2); }

/* ============================================
   アラート
   ============================================ */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    margin-bottom: 16px;
    border-left: 3px solid;
}
.alert-success { background: var(--success-light); border-color: var(--success); color: #2E5E4A; }
.alert-error   { background: var(--danger-light);  border-color: var(--danger);  color: #7A2E35; }
.alert-info    { background: var(--primary-light);  border-color: var(--primary); color: var(--primary-dark); }

/* ============================================
   イベント詳細
   ============================================ */
.event-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-900);
    letter-spacing: .01em;
}
.event-meta {
    font-size: .8rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}
.event-memo {
    background: var(--gray-50);
    border-left: 3px solid var(--primary-mid);
    padding: 10px 14px;
    font-size: .88rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: pre-wrap;
    color: var(--gray-600);
}

.share-box {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.share-url {
    flex: 1;
    min-width: 0;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: .82rem;
    font-family: 'Consolas', 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-600);
}

.answer-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: .75rem;
    font-weight: 700;
}

/* ============================================
   トップページ ヒーロー
   ============================================ */
.hero {
    text-align: center;
    padding: 28px 16px 16px;
}
.hero h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-900);
    letter-spacing: .02em;
}
.hero p {
    color: var(--gray-500);
    font-size: .88rem;
}

/* ============================================
   フッター
   ============================================ */
.site-footer {
    text-align: center;
    padding: 24px 16px;
    font-size: .75rem;
    color: var(--gray-400);
    margin-top: 16px;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   ユーティリティ
   ============================================ */
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mb-8  { margin-bottom:  8px; }
.mb-12 { margin-bottom: 12px; }
.flex-gap { display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================================
   1. イベント履歴（localStorage）
   ============================================ */
#event-history { display: none; }

.history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    text-decoration: none;
    color: var(--gray-800);
    margin-bottom: 6px;
    transition: all .12s;
}
.history-item:hover {
    background: var(--primary-light);
    border-color: var(--primary-mid);
}
.history-title {
    font-weight: 700;
    font-size: .9rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--primary-dark);
}
.history-date  { font-size: .75rem; color: var(--gray-400); white-space: nowrap; }
.history-arrow { font-size: 1.1rem; color: var(--primary); font-weight: 700; }

/* ============================================
   3. バリデーションエラー
   ============================================ */
#slot-error-msg {
    display: none;
    color: var(--danger);
    font-size: .85rem;
    font-weight: 600;
    padding: 10px 14px;
    background: var(--danger-light);
    border: 1px solid #FECACA;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

/* 選択中カウント */
#slot-count {
    font-size: .78rem;
    color: var(--primary);
    font-weight: 700;
    margin-left: 6px;
}

/* ============================================
   5. 同名上書き警告
   ============================================ */
#name-warning {
    display: none;
    margin-top: 6px;
    padding: 8px 12px;
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    color: #92400E;
}

/* ============================================
   7. 回答済みバッジ
   ============================================ */
.answered-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 1px 7px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: .03em;
}
tr.my-row td { background: #F0F7FF !important; }
tr.my-row td:first-child { background: #E5F1FB !important; }

/* ============================================
   2. 回答フォーム スマホ改善
   ============================================ */
/* スマホではカード型レイアウトに変換 */
@media (max-width: 520px) {
    .answer-table-wrap { overflow-x: visible; }
    table.answer-form-table,
    table.answer-form-table tbody,
    table.answer-form-table tr,
    table.answer-form-table td { display: block; width: 100%; }
    table.answer-form-table thead { display: none; }
    table.answer-form-table tr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-sm);
        margin-bottom: 6px;
        background: #fff;
    }
    table.answer-form-table tr:nth-child(odd) { background: var(--gray-50); }
    table.answer-form-table td { border: none; padding: 0; }
    table.answer-form-table td:first-child {
        position: static;
        min-width: 90px;
        background: transparent;
    }
    table.answer-form-table .col-sat { background: transparent; }
    table.answer-form-table .col-hol { background: transparent; }
    /* スマホ: ○△× ボタン大きめ */
    .resp-group label { width: 44px; height: 44px; font-size: 1.05rem; }
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 600px) {
    .container  { padding: 12px 10px; }
    .card       { padding: 16px; }
    .btn-lg     { padding: 12px 22px; font-size: .95rem; }
    table.attendance th,
    table.attendance td { padding: 7px 6px; }
    .event-header h2 { font-size: 1.1rem; }
    .cal-tab { padding: 5px 8px; font-size: .75rem; }
}
