@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #FF6B9D;
  --pink-soft: #FF8EB3;
  --pink-bg: #FFF5F8;
  --pink-border: #FFE0EB;
  --purple: #B388FF;
  --purple-soft: #D1B3FF;
  --blue: #81D4FA;
  --mint: #80CBC4;
  --yellow: #FFD54F;
  --peach: #FFCCBC;
  --bg: #FFF8FA;
  --card: #FFFFFF;
  --text: #3A3A4A;
  --text-sub: #8E8EA0;
  --text-mid: #6B6B80;
  --border: #F0E4E8;
  --border-light: #FFF0F4;
  --shadow: 0 8px 32px rgba(255,107,157,0.10);
  --shadow-sm: 0 2px 12px rgba(255,107,157,0.06);
  --shadow-hover: 0 12px 40px rgba(255,107,157,0.16);
  --radius: 20px;
  --radius-sm: 12px;
}

body {
  font-family: 'Noto Sans KR', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(255,182,193,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(179,136,255,0.08) 0%, transparent 50%);
}

/* ===== LOADING ===== */
.loading-overlay {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s;
}
.loading-overlay.hide { opacity: 0; pointer-events: none; }
.loading-spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--pink-border);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HOME PAGE ===== */
.home-page { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; }
.home-header { text-align: center; margin-bottom: 48px; }
.home-header h1 {
  font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.home-header p { font-size: 15px; color: var(--text-sub); }

.trip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px; margin-bottom: 24px;
}

.trip-card {
  background: white; border-radius: var(--radius); padding: 28px;
  border: 2px solid var(--pink-border); cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative; overflow: hidden;
}
.trip-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  opacity: 0; transition: opacity 0.3s;
}
.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--pink-soft); }
.trip-card:hover::before { opacity: 1; }

.trip-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.trip-card-emoji {
  font-size: 36px; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-bg); border-radius: 16px; flex-shrink: 0;
}
.trip-card-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.trip-card-info .trip-date { font-size: 13px; color: var(--text-sub); }

.trip-card-stats {
  display: flex; gap: 16px; padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 12px; color: var(--text-sub);
}
.trip-card-stats span { font-weight: 600; color: var(--text-mid); }

/* Trip card action buttons */
.trip-card-actions {
  position: absolute; top: 14px; right: 14px;
  display: flex; gap: 6px; opacity: 0;
  transition: opacity 0.2s;
}
.trip-card:hover .trip-card-actions { opacity: 1; }

.trip-card-btn {
  width: 30px; height: 30px; border-radius: 50%; border: none;
  background: transparent; color: var(--text-sub);
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.trip-card-edit:hover { background: #E8F0FE; color: #4285F4; }
.trip-card-delete:hover { background: #FFE4EC; color: var(--pink); }

.add-trip-card {
  background: white; border-radius: var(--radius); padding: 28px;
  border: 2.5px dashed var(--pink-border); cursor: pointer;
  transition: all 0.3s; display: flex; flex-direction: column;
  align-items: center; justify-content: center; min-height: 160px; gap: 12px; color: var(--text-sub);
}
.add-trip-card:hover {
  border-color: var(--pink-soft); background: var(--pink-bg);
  transform: translateY(-4px); box-shadow: var(--shadow); color: var(--pink);
}
.add-trip-card .plus {
  width: 48px; height: 48px; border-radius: 50%; background: var(--pink-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 300; transition: all 0.3s;
}
.add-trip-card:hover .plus { background: var(--pink-border); }
.add-trip-card span { font-size: 14px; font-weight: 600; }

/* ===== PLANNER PAGE ===== */
.planner-page { display: none; }
.planner-page.active { display: block; }
.home-page.hidden { display: none; }

.planner-header {
  background: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 40%, #D4A5FF 100%);
  padding: 20px 40px; color: white;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 24px rgba(255,154,158,0.25);
  display: flex; align-items: center; gap: 16px;
}
.btn-back {
  padding: 8px 16px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15); color: white;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.25s; font-family: inherit; flex-shrink: 0;
}
.btn-back:hover { background: rgba(255,255,255,0.35); }
.planner-header .trip-title { font-size: 20px; font-weight: 700; flex: 1; }

.btn-edit-dates {
  padding: 8px 16px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15); color: white;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.25s; font-family: inherit; flex-shrink: 0;
}
.btn-edit-dates:hover { background: rgba(255,255,255,0.35); }

/* ===== DATE TABS ===== */
.date-tabs-wrapper {
  padding: 14px 40px 0; background: white;
  box-shadow: var(--shadow-sm); position: sticky; top: 64px; z-index: 90;
}
.date-tabs { display: flex; gap: 6px; overflow-x: auto; }
.date-tab {
  padding: 11px 22px; border-radius: 14px 14px 0 0; border: none;
  background: var(--pink-bg); color: var(--text-sub);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.25s; white-space: nowrap; font-family: inherit;
}
.date-tab:hover { background: var(--pink-border); color: var(--pink); }
.date-tab.active {
  background: linear-gradient(135deg, #FF9A9E, #FFB6C1);
  color: white; font-weight: 700;
}
.date-tab .day-label { font-size: 10px; opacity: 0.75; display: block; margin-top: 2px; }

/* ===== SUMMARY ===== */
.summary-bar {
  display: flex; gap: 12px; padding: 14px 40px;
  background: white; border-bottom: 1px solid var(--border-light); flex-wrap: wrap;
}
.summary-item {
  padding: 6px 14px; background: var(--pink-bg); border-radius: 50px;
  font-size: 12px; color: var(--text-mid); border: 1px solid var(--pink-border);
}
.summary-item .value { font-weight: 700; color: var(--pink); }

/* ===== MAIN ===== */
.main { padding: 24px 40px 80px; max-width: 1500px; margin: 0 auto; }

/* ===== TABLE ===== */
.schedule-table-wrapper {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1.5px solid var(--pink-border); margin-bottom: 24px;
}
.day-header {
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFF5F8, #F8F0FF);
  font-weight: 700; font-size: 15px;
  border-bottom: 1.5px solid var(--pink-border);
  display: flex; align-items: center; justify-content: space-between;
}
.day-header-actions {
  display: flex; align-items: center; gap: 8px;
}
.day-header .day-total { font-size: 12px; font-weight: 600; color: var(--pink); }
.btn-small {
  padding: 5px 12px; border-radius: 50px; border: 1px solid var(--pink-border);
  background: white; color: var(--text-mid); font-size: 11px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: inherit; white-space: nowrap;
}
.btn-small:hover { background: var(--pink-bg); color: var(--pink); border-color: var(--pink-soft); }
.btn-small.active { background: var(--pink); color: white; border-color: var(--pink); }

.schedule-table-scroll { overflow-x: auto; }
.schedule-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.schedule-table thead th {
  background: #FFFAFC; padding: 12px 14px;
  font-size: 12px; font-weight: 700; color: var(--pink);
  text-align: left; border-bottom: 1.5px solid var(--pink-border);
}
.col-action { width: 32px; text-align: center !important; padding: 0 !important; }
.col-time { width: 60px; text-align: center !important; }
.col-custom-time { width: 70px; text-align: center !important; }
.col-schedule { width: 20%; }
.col-details { width: 25%; }
.col-etc { width: 18%; }
.col-krw { width: 90px; text-align: right !important; }
.col-jpy { width: 90px; text-align: right !important; }

/* Row styles: hour vs sub-rows */
.schedule-table tbody tr {
  transition: background 0.15s;
}
.schedule-table tbody tr:hover { background: #FFFAFC; }
.schedule-table tbody tr.has-content td:nth-child(2) { border-left: 3px solid var(--pink-soft); }

/* Action cell (hide/restore buttons) */
.action-cell {
  padding: 0 2px !important; vertical-align: middle; text-align: center;
  width: 32px; background: #FFFCFD;
}
.btn-hide-row, .btn-restore-row {
  width: 22px; height: 22px; border: none; border-radius: 50%;
  font-size: 12px; cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center;
  transition: all 0.2s; opacity: 0; background: transparent; color: #CCC;
}
tr:hover .btn-hide-row, tr:hover .btn-restore-row { opacity: 1; }
.btn-hide-row:hover { background: #FFE4EC; color: var(--pink); opacity: 1; }
.btn-restore-row { opacity: 1 !important; background: #E8F5E9; color: #2E7D32; font-size: 10px; }
.btn-restore-row:hover { background: #C8E6C9; }

/* Hidden row shown in "show hidden" mode */
tr.row-hidden-visible { opacity: 0.5; background: #FFF0F2 !important; }
tr.row-hidden-visible:hover { opacity: 0.8; }

/* Hour row - solid top border */
.schedule-table tbody tr.row-hour {
  border-top: 1.5px solid var(--border);
}
.schedule-table tbody tr.row-hour td {
  border-top: 1.5px solid #E8DDE2;
}

/* Sub rows (20min, 40min) - dashed top border */
.schedule-table tbody tr.row-sub td {
  border-top: 1px dashed #F0E4E8;
}

/* Category row colors */
.schedule-table tbody tr.cat-transport { background: #F5F9FF; }
.schedule-table tbody tr.cat-transport:hover { background: #EBF3FF; }
.schedule-table tbody tr.cat-food { background: #FFFCF0; }
.schedule-table tbody tr.cat-food:hover { background: #FFF9E0; }
.schedule-table tbody tr.cat-hotel { background: #F8F5FF; }
.schedule-table tbody tr.cat-hotel:hover { background: #F0EAFF; }
.schedule-table tbody tr.cat-activity { background: #F5FFF7; }
.schedule-table tbody tr.cat-activity:hover { background: #EAFFEE; }
.schedule-table tbody tr.cat-shopping { background: #FFF5F8; }
.schedule-table tbody tr.cat-shopping:hover { background: #FFEBF0; }
.schedule-table tbody tr.cat-rest { background: #FAF5FF; }
.schedule-table tbody tr.cat-rest:hover { background: #F3EAFF; }

/* Time cell */
.time-cell {
  padding: 8px 6px; font-size: 13px; font-weight: 600;
  color: var(--text-sub); text-align: center; white-space: nowrap;
  vertical-align: middle; border-right: 1.5px solid var(--border-light);
  background: #FFFCFD; user-select: none; font-variant-numeric: tabular-nums;
}
.time-cell.hour-mark { font-weight: 800; color: var(--pink); background: #FFF8FA; font-size: 14px; }

/* Custom time input cell */
.custom-time-cell {
  padding: 4px 3px; vertical-align: middle;
  border-right: 1px solid var(--border-light);
}
.custom-time-input {
  width: 100%; padding: 4px 6px;
  border: 1px solid transparent; border-radius: 6px;
  font-size: 11px; font-family: inherit;
  color: var(--text-mid); background: transparent;
  text-align: center; transition: all 0.2s;
  outline: none;
}
.custom-time-input::placeholder { color: #E0D4D8; font-size: 10px; }
.custom-time-input:focus {
  border-color: var(--pink-soft);
  background: white;
  box-shadow: 0 0 0 2px rgba(255,107,157,0.1);
}
.custom-time-input:not(:placeholder-shown) {
  background: #FFF8FA;
  color: var(--pink);
  font-weight: 600;
}

/* Editable cells */
.editable-cell {
  padding: 5px 8px; min-height: 36px;
  cursor: text; vertical-align: top; transition: background 0.15s;
}
.editable-cell .cell-content {
  min-height: 22px; outline: none; font-size: 13px; line-height: 1.6;
  color: var(--text); border-radius: 6px; padding: 3px 8px;
  transition: all 0.2s; white-space: pre-wrap; word-break: break-word;
}
.editable-cell .cell-content:empty::before {
  content: attr(data-placeholder); color: #DDD0D6; font-size: 12px;
}
.editable-cell .cell-content:focus {
  background: white;
  box-shadow: 0 0 0 2px var(--pink-soft), 0 2px 8px rgba(255,107,157,0.08);
}
.cost-cell .cell-content { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; }

/* ===== CATEGORY BADGES ===== */
.category-picker { display: flex; gap: 3px; margin-bottom: 3px; flex-wrap: wrap; }
.category-badge {
  display: inline-block; padding: 2px 8px; border-radius: 50px;
  font-size: 10px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; opacity: 0.35; user-select: none;
}
.category-badge.active { opacity: 1; }
.category-badge:hover { opacity: 0.7; }
.cat-transport { background: #E3F2FD; color: #1565C0; }
.cat-food { background: #FFF8E1; color: #E65100; }
.cat-hotel { background: #EDE7F6; color: #4527A0; }
.cat-activity { background: #E8F5E9; color: #2E7D32; }
.cat-shopping { background: #FCE4EC; color: #C2185B; }
.cat-rest { background: #F3E5F5; color: #7B1FA2; }

/* ===== TOTAL ROW ===== */
.total-row td {
  background: linear-gradient(135deg, #FFF5F8, #F8F0FF) !important;
  font-weight: 700 !important;
  border-top: 2px solid var(--pink-border) !important;
  padding: 14px !important; font-size: 13px !important; color: var(--pink) !important;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.25); backdrop-filter: blur(6px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  padding: 36px; width: 460px; max-width: 92vw;
  transform: translateY(24px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  border: 1.5px solid var(--pink-border);
}
.modal-wide { width: 540px; }
.modal-overlay.show .modal { transform: translateY(0) scale(1); }

/* Flag Picker */
.flag-picker {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px; padding: 10px;
  background: #FFFAFC; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  max-height: 140px; overflow-y: auto;
}
.flag-option {
  width: 36px; height: 36px; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; cursor: pointer;
  transition: all 0.2s; border: 2px solid transparent;
  user-select: none;
}
.flag-option:hover { background: var(--pink-bg); transform: scale(1.15); }
.flag-option.selected {
  border-color: var(--pink); background: var(--pink-bg);
  box-shadow: 0 2px 8px rgba(255,107,157,0.2); transform: scale(1.15);
}
.modal h2 { font-size: 20px; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.modal label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--text-sub); }
.modal input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit;
  transition: all 0.2s; margin-bottom: 16px; background: #FFFCFD;
}
.modal input:focus { outline: none; border-color: var(--pink-soft); box-shadow: 0 0 0 3px rgba(255,107,157,0.08); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px; }

.btn {
  padding: 11px 26px; border-radius: 50px; border: none;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all 0.25s; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: white; box-shadow: 0 4px 16px rgba(255,107,157,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,107,157,0.3); }
.btn-secondary { background: var(--pink-bg); color: var(--text-mid); }
.btn-secondary:hover { background: var(--pink-border); }
.btn-danger { background: #FFE4EC; color: var(--pink); }
.btn-danger:hover { background: #FFCDD5; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #FFF8FA; }
::-webkit-scrollbar-thumb { background: #FFCCD8; border-radius: 10px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.35s ease; }

/* ===== PLANNER TAB BAR ===== */
.planner-tab-bar {
  display: flex; gap: 0; background: white;
  padding: 0 40px; border-bottom: 2px solid var(--border-light);
}
.planner-tab {
  padding: 14px 24px; border: none; background: none;
  font-size: 14px; font-weight: 600; color: var(--text-sub);
  cursor: pointer; transition: all 0.25s; font-family: inherit;
  border-bottom: 3px solid transparent; position: relative;
}
.planner-tab:hover { color: var(--pink); background: var(--pink-bg); }
.planner-tab.active {
  color: var(--pink); border-bottom-color: var(--pink);
  font-weight: 700;
}

/* ===== CHECKLIST ===== */
#checklistView { padding: 24px 40px 80px; max-width: 700px; margin: 0 auto; }

.checklist-container {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1.5px solid var(--pink-border);
}
.checklist-header {
  padding: 20px 24px; font-weight: 700; font-size: 16px;
  background: linear-gradient(135deg, #FFF5F8, #F8F0FF);
  border-bottom: 1.5px solid var(--pink-border);
  display: flex; align-items: center; justify-content: space-between;
}
.checklist-count {
  font-size: 13px; font-weight: 600; color: var(--pink);
  background: var(--pink-bg); padding: 4px 14px; border-radius: 50px;
  border: 1px solid var(--pink-border);
}

.checklist-add {
  display: flex; gap: 8px; padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
}
.checklist-input {
  flex: 1; padding: 11px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; background: #FFFCFD;
  transition: all 0.2s; outline: none;
}
.checklist-input:focus {
  border-color: var(--pink-soft);
  box-shadow: 0 0 0 3px rgba(255,107,157,0.08);
}
.checklist-input::placeholder { color: #D0C4C8; }
.btn-add-item {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  border: none; background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color: white; font-size: 22px; font-weight: 300;
  cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.btn-add-item:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,107,157,0.3); }

.checklist-items { padding: 8px 0; }

.checklist-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; transition: all 0.2s;
  border-bottom: 1px solid var(--border-light);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item:hover { background: #FFFAFC; }
.checklist-item.checked .checklist-item-text {
  text-decoration: line-through; color: var(--text-sub); opacity: 0.6;
}

/* Custom checkbox */
.check-label {
  position: relative; cursor: pointer; flex-shrink: 0;
  width: 22px; height: 22px; display: block;
}
.check-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkmark {
  position: absolute; inset: 0;
  border: 2px solid var(--pink-border); border-radius: 6px;
  background: white; transition: all 0.25s;
}
.check-label input:checked ~ .checkmark {
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  border-color: var(--pink);
}
.checkmark::after {
  content: ''; position: absolute;
  left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid white; border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg); opacity: 0; transition: opacity 0.2s;
}
.check-label input:checked ~ .checkmark::after { opacity: 1; }

.checklist-item-text {
  flex: 1; font-size: 14px; line-height: 1.6;
  outline: none; border-radius: 6px; padding: 2px 6px;
  transition: all 0.2s; min-height: 22px; word-break: break-word;
}
.checklist-item-text:focus {
  background: white;
  box-shadow: 0 0 0 2px var(--pink-soft);
}

.btn-delete-item {
  width: 26px; height: 26px; border: none; border-radius: 50%;
  background: transparent; color: #CCC; font-size: 13px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; opacity: 0; flex-shrink: 0;
}
.checklist-item:hover .btn-delete-item { opacity: 1; }
.btn-delete-item:hover { background: #FFE4EC; color: var(--pink); }

.checklist-empty {
  padding: 40px 24px; text-align: center;
  color: var(--text-sub); font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .home-page { padding: 32px 16px; }
  .trip-cards { grid-template-columns: 1fr; }
  .planner-header { padding: 16px; }
  .date-tabs-wrapper { padding: 10px 16px 0; }
  .main { padding: 16px 12px 60px; }
  .summary-bar { padding: 10px 16px; }
  .col-custom-time { width: 55px; }
  .custom-time-input { font-size: 10px; padding: 3px 2px; }
  .planner-tab-bar { padding: 0 16px; }
  .planner-tab { padding: 12px 16px; font-size: 13px; }
  #checklistView { padding: 16px 12px 60px; }
  .checklist-item { padding: 10px 16px; }
  .checklist-add { padding: 12px 16px; }
}
