@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg:        #f0ece5;
  --panel:     #ffffff;
  --text:      #111111;
  --muted:     #6b7280;
  --border:    #e8e3db;
  --accent:    #111111;
  --accent-fg: #ffffff;
  --danger:    #dc2626;
  --success:   #16a34a;
  --warning:   #d97706;
  --shadow:    0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}

/* ── Sidebar ── */
.sidebar {
  background: #1c1917;
  color: #e2e8f0;
  padding: 28px 16px 28px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar h1 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
  padding: 0 12px;
  margin-bottom: 32px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav a:hover {
  background: rgba(255,255,255,0.07);
  color: #ffffff;
  text-decoration: none;
}

.nav a.active {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-weight: 600;
}

/* ── Main content ── */
.content {
  padding: 28px 36px 48px;
  width: 100%;
  min-width: 0;
  position: relative;
}

/* ── Page user bar (other pages) ── */
.page-userbar {
  text-align: right;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
  position: absolute;
  top: 24px;
  right: 28px;
}

/* ── Language toggle button ── */
.lang-toggle-btn {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--panel);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.6;
  transition: background 0.15s, border-color 0.15s;
  vertical-align: middle;
}
.lang-toggle-btn:hover {
  background: var(--bg);
  border-color: var(--text);
}


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 9px 18px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.btn:hover { opacity: 0.85; text-decoration: none; color: var(--accent-fg); }

.btn.secondary {
  background: #f3f4f6;
  color: #374151;
}

.btn.secondary:hover { background: #e5e7eb; }

.btn-sm {
  padding: 5px 12px;
  font-size: 12px;
}

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

/* ── Panel / Card ── */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.panel h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ── Table ── */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.table tr:last-child td { border-bottom: none; }

.table th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: #faf9f7;
}

.table tbody tr:hover { background: #faf9f7; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge.open    { background: #e0f2fe; color: #0369a1; }
.badge.done    { background: #dcfce7; color: #15803d; }
.badge.low     { background: #f3f4f6; color: #374151; }
.badge.normal  { background: #dbeafe; color: #1d4ed8; }
.badge.high    { background: #fed7aa; color: #9a3412; }
.badge.urgent  { background: #fecaca; color: #b91c1c; }

/* ── Filters ── */
.filters {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filters select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--panel);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 36px 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  width: auto;
}

/* ── Inputs ── */
.input, select, textarea {
  border: none;
  background: #ece8e0;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1.5px transparent;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #111111;
}

select { width: auto; }

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

/* ── Form groups ── */
.form-group {
  margin-bottom: 16px;
}

/* ── Stat cards ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-card.stat-urgent .stat-value { color: var(--danger); }
.stat-card.stat-warn .stat-value   { color: var(--warning); }

/* ── Task group header ── */
.task-group-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 4px 0 10px;
  margin-top: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

/* ── Task cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.task-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.task-card:hover { box-shadow: var(--shadow); }

.task-card.priority-urgent {
  box-shadow: inset 3px 0 0 var(--danger), var(--shadow-sm);
  background: #fffafa;
}

.task-card.priority-high {
  box-shadow: inset 3px 0 0 var(--warning), var(--shadow-sm);
  background: #fffcf5;
}

.task-card.status-done {
  opacity: 0.5;
  background: var(--panel);
}

.task-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.task-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.task-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.task-card[data-expandable] {
  cursor: pointer;
}

.task-card[data-expandable]:hover .task-card-title {
  color: #374151;
}

.card-expand {
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  padding-top: 2px;
}

.task-card.expanded .card-expand {
  transform: rotate(180deg);
}

.task-card-controls {
  border-top: 1px solid #f0ece5;
  padding-top: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.task-card.expanded .task-card-controls {
  display: flex;
}

.task-card-controls .control-row {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.task-card-controls select {
  flex: 1;
  min-width: 90px;
  padding: 5px 8px;
  font-size: 12px;
  color: var(--muted);
  border-color: #ede9e3;
  background: #faf9f7;
}

.task-card-controls .btn-row {
  display: flex;
  gap: 8px;
}

/* ── Messages list ── */
.messages-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thread {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.thread-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #faf9f7;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.thread-messages {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Chat / Stay view ── */
.chat-container {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 72vh;
  overflow: hidden;
}

.chat-messages {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  max-width: 65%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.bubble.inbound {
  background: #e8f0fe;
  border-bottom-left-radius: 4px;
  margin-right: auto;
  color: #1e3a5f;
}

.bubble.outbound {
  background: #f0fdf4;
  border-bottom-right-radius: 4px;
  margin-left: auto;
  color: #14532d;
}

.bubble .meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}

.reply-box {
  border-top: 1px solid var(--border);
  padding: 14px 16px;
  background: #faf9f7;
}

.reply-box form {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.reply-box textarea {
  flex: 1;
  resize: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* ── Misc ── */
.small { font-size: 12px; color: var(--muted); }

.page-header {
  margin-bottom: 20px;
}

.page-header h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.page-header p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* ── Fields ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.field-hint {
  font-size: 12px;
  color: var(--muted);
}

/* ── Check-in form ── */
.checkin-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.checkin-submit {
  background: #2d2d2d;
  font-size: 14px;
  padding: 10px 22px;
}

.checkin-submit:hover {
  background: #111;
}

/* ── Login page ── */
.login-wrap {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
}

.login-card h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}

.login-card .subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.error-msg {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ── Info rows (hotel info page) ── */
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.info-row:last-child { border-bottom: none; }

.info-row-key {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 160px;
}

.info-row-value {
  flex: 1;
  font-size: 14px;
}

.info-row-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

/* ── Messages 2-column layout ───────────────────────────── */
.content.messages-page {
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.messages-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* Inbox panel (left) */
.inbox-panel {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
}

.inbox-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.inbox-header h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.inbox-userbar {
  font-size: 12px;
  color: var(--muted);
}

.inbox-userbar a {
  color: var(--text);
  font-weight: 600;
}

.inbox-list {
  flex: 1;
  overflow-y: auto;
}

.inbox-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: background 0.1s;
}

.inbox-row:hover { background: #f5f2ec; }
.inbox-row.active { background: #ede9e1; }

.inbox-row.awaiting .inbox-who { font-weight: 700; }

.inbox-left {
  flex: 1;
  min-width: 0;
}

.inbox-who {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.inbox-preview {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-time {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.inbox-empty {
  padding: 48px 20px;
  text-align: center;
  color: var(--muted);
}

/* Status dot indicator */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.priority-urgent { background: var(--danger); }
.status-dot.priority-high   { background: var(--warning); }
.status-dot.priority-normal { background: #94a3b8; }
.status-dot.priority-low    { background: #cbd5e1; }

/* Thread header task chips */
.thread-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thread-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.thread-task-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.task-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  transition: opacity 0.1s;
}
.task-chip:hover { opacity: 0.75; }

.task-chip.status-done {
  background: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}
.task-chip.status-open.priority-urgent {
  background: #fff1f2;
  color: #9f1239;
  border-color: #fecdd3;
}
.task-chip.status-open.priority-high {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
}
.task-chip.status-open {
  background: #f8fafc;
  color: #334155;
  border-color: #e2e8f0;
}

/* Thread panel (right) */
.thread-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}

.thread-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--panel);
  flex-shrink: 0;
}

.thread-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.thread-header strong {
  font-size: 15px;
  font-weight: 600;
}

.thread-phone {
  font-size: 13px;
  color: var(--muted);
  margin-left: 8px;
}

.thread-meta-forms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.thread-meta-form {
  display: flex;
  align-items: center;
  gap: 4px;
}

.thread-meta-input {
  font-family: var(--font);
  font-size: 12px;
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--text);
  width: 110px;
}

.thread-meta-input:focus {
  outline: none;
  border-color: #888;
}

.thread-meta-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: #fff;
  cursor: pointer;
}

.thread-meta-btn:hover { opacity: 0.8; }

.thread-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
}

.thread-panel .chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: #e8e3db;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.thread-panel .reply-box {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--panel);
  flex-shrink: 0;
}

.thread-panel .reply-box form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thread-panel .reply-box textarea {
  width: 100%;
  resize: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
  box-sizing: border-box;
}

.thread-panel .reply-box textarea:focus {
  outline: none;
  border-color: #888;
}

.thread-panel .reply-box .btn {
  align-self: flex-end;
}

/* ── Knowledge Suggestions ── */
.suggestion-panel h3 {
  font-size: 15px;
  font-weight: 700;
}

.suggestion-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.suggestion-card:last-child {
  margin-bottom: 0;
}

.suggestion-context {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.suggestion-label {
  font-weight: 600;
  color: #92400e;
}

.suggestion-approve-form .field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}

/* ── Task chip done button (messages page) ── */
.task-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.task-chip-label {
  flex: 1;
}

.task-chip-done-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  opacity: 0.5;
  padding: 0 2px;
  line-height: 1;
  transition: opacity 0.15s;
}

.task-chip-done-btn:hover {
  opacity: 1;
}

/* ── Analytics ── */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.stat-card.highlight {
  background: #2d2d2d;
  color: #fff;
}
.stat-card.highlight .stat-label,
.stat-card.highlight .stat-hint { color: #aaa; }
.stat-label { font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.stat-value { font-size: 32px; font-weight: 700; line-height: 1.1; }
.stat-pct { font-size: 16px; font-weight: 600; margin-left: 6px; }
.stat-pct.good { color: #16a34a; }
.stat-pct.ok   { color: #d97706; }
.stat-pct.warn { color: #dc2626; }
.stat-hint { font-size: 12px; margin-top: 4px; }

.analytics-row { display: flex; gap: 16px; margin-bottom: 24px; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid #f0ede8; }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 10px 0; font-size: 14px; }
.info-table td:first-child { color: #666; }
.info-table td:last-child { text-align: right; }

.dept-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.dept-row:last-child { margin-bottom: 0; }
.dept-name { font-size: 13px; width: 110px; flex-shrink: 0; }
.dept-bar-wrap { flex: 1; background: #f0ede8; border-radius: 4px; height: 8px; overflow: hidden; }
.dept-bar { height: 8px; background: #2d2d2d; border-radius: 4px; transition: width .3s; }
.dept-count { font-size: 13px; font-weight: 600; width: 30px; text-align: right; flex-shrink: 0; }

.roi-panel {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 8px;
}
.roi-headline { font-size: 16px; margin-bottom: 6px; }
.roi-sub { font-size: 14px; color: #555; }

.btn-outline {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline.active, .btn-outline:hover {
  background: #2d2d2d;
  color: #fff;
  border-color: #2d2d2d;
}

.badge-green { background: #dcfce7; color: #16a34a; padding: 2px 8px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.muted { color: #aaa; font-size: 13px; }

/* ── Merged hotel/knowledge page ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.section-hint {
  font-size: 13px;
  color: #999;
  margin-bottom: 14px;
}
