.page-header { margin-bottom: 24px; }
.page-header h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.page-header p { color: var(--color-muted); font-size: 0.9rem; }
.page-header-row { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--radius-btn);
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: background 0.15s;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-secondary { background: #fff; color: var(--color-text); border: 1px solid var(--color-border); }
.btn-secondary:hover { background: #f9fafb; }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-danger { background: var(--color-danger); color: #fff; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--color-border); border-radius: var(--radius-btn);
  font-family: inherit; font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; margin-bottom: 10px; }
.checkbox-row input { width: auto; margin-top: 3px; }

.alert { padding: 12px 16px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 16px; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

.active-profile-banner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 12px 16px; margin-bottom: 16px;
  background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius-card);
  font-size: 0.85rem; color: #1e3a5f;
}
.active-profile-banner-text { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.active-profile-banner-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: #2563eb; background: #dbeafe; padding: 2px 8px; border-radius: var(--radius-pill);
}
.active-profile-banner-sep { color: #93c5fd; margin: 0 2px; }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
}

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }

.stat-card { padding: 20px; }
.stat-card .label { font-size: 0.8rem; color: var(--color-muted); margin-bottom: 4px; }
.stat-card .value { font-size: 1.75rem; font-weight: 700; }
.stat-card .trend { font-size: 0.75rem; color: var(--color-success); margin-top: 4px; }

.scoring-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 600; padding: 2px 6px;
  border-radius: 4px; margin-left: 4px; vertical-align: middle; text-transform: uppercase;
}
.scoring-tag-rules { background: #e5e7eb; color: #374151; }
.scoring-tag-llm { background: #dbeafe; color: #1d4ed8; }
.scoring-tag-hybrid { background: #ede9fe; color: #6d28d9; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .form-row { grid-template-columns: 1fr; }
}

.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 600;
}
.badge-sky { background: #e0f2fe; color: #0369a1; }
.badge-blue { background: #dbeafe; color: #1d4ed8; }
.badge-indigo { background: #e0e7ff; color: #4338ca; }
.badge-amber { background: #fef3c7; color: #b45309; }
.badge-cyan { background: #cffafe; color: #0e7490; }
.badge-violet { background: #ede9fe; color: #6d28d9; }
.badge-purple { background: #f3e8ff; color: #7e22ce; }
.badge-teal { background: #ccfbf1; color: #0f766e; }
.badge-red { background: #fee2e2; color: #b91c1c; }
.badge-orange { background: #ffedd5; color: #c2410c; }
.badge-gray { background: #f3f4f6; color: #4b5563; }
.badge-green { background: #dcfce7; color: #15803d; }

.skill-tag {
  display: inline-block; padding: 4px 10px; margin: 2px;
  border: 1px solid #bfdbfe; border-radius: var(--radius-pill);
  font-size: 0.75rem; color: var(--color-primary); background: #eff6ff;
}

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; align-items: center;
}
.filter-bar input, .filter-bar select {
  padding: 8px 12px; border: 1px solid var(--color-border);
  border-radius: var(--radius-btn); font-family: inherit; font-size: 0.85rem;
}
.filter-bar input { flex: 1; min-width: 200px; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
th { text-align: left; padding: 10px 12px; color: var(--color-muted); font-weight: 600; border-bottom: 1px solid var(--color-border); }
td { padding: 12px; border-bottom: 1px solid #f3f4f6; vertical-align: middle; }
tr:hover td { background: #fafafa; }

.candidate-cell { display: flex; align-items: center; gap: 10px; }
.candidate-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.8rem; flex-shrink: 0;
  overflow: hidden;
}
.candidate-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.candidates-search-mobile { display: none; }
.candidates-search-mobile input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--color-border);
  border-radius: var(--radius-btn); font-family: inherit; font-size: 16px;
}

.score-ring {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  border: 3px solid;
}
.score-high { border-color: var(--color-success); color: var(--color-success); }
.score-mid { border-color: var(--color-warning); color: var(--color-warning); }
.score-low { border-color: var(--color-danger); color: var(--color-danger); }

.candidate-card-mobile {
  display: none;
  padding: 16px; margin-bottom: 10px;
}
.candidate-card-mobile .card-top { display: flex; justify-content: space-between; align-items: flex-start; }

@media (max-width: 768px) {
  .has-mobile-cards .table-wrap { display: none; }
  .has-mobile-cards .candidate-card-mobile { display: block; }

  .form-group input, .form-group select, .form-group textarea,
  .filter-bar input, .filter-bar select {
    font-size: 16px;
  }

  .candidates-search-mobile { display: block; margin-bottom: 12px; }
  .filter-bar .filter-q-desktop { display: none; }
  .filter-bar-advanced { display: none; }

  .filter-bar #filter-q { flex-basis: 100%; min-width: 0; }

  .pagination button {
    min-width: 44px; min-height: 44px; padding: 10px 14px;
  }

  .modal-actions { flex-direction: column; }
  .modal-actions .btn { width: 100%; justify-content: center; }

  .profile-header { flex-direction: column; align-items: stretch !important; }
  .profile-header-actions {
    width: 100%; display: flex; flex-direction: column; gap: 8px;
  }
  .profile-header-actions select,
  .profile-header-actions .btn { width: 100%; text-align: center; }

  .settings-actions { flex-direction: column; }
  .settings-actions .btn { width: 100%; margin-left: 0 !important; }
}

.pipeline-donut-container {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
}
.pipeline-donut {
  width: 140px; height: 140px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pipeline-donut-hole {
  width: 88px; height: 88px; border-radius: 50%; background: var(--color-surface);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.pipeline-donut-total { font-size: 1.4rem; font-weight: 700; line-height: 1.1; }
.pipeline-donut-label { font-size: 0.7rem; color: var(--color-muted); text-transform: uppercase; }
.pipeline-legend { list-style: none; flex: 1; min-width: 160px; font-size: 0.8rem; }
.pipeline-legend li {
  display: flex; align-items: center; gap: 8px; padding: 4px 0;
  justify-content: space-between;
}
.pipeline-legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}

.pipeline-list { list-style: none; }
.pipeline-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f3f4f6; font-size: 0.85rem; }
.pipeline-bar { height: 6px; background: #e5e7eb; border-radius: 3px; margin-top: 4px; }
.pipeline-bar-fill { height: 100%; border-radius: 3px; background: var(--color-primary); }

.experience-timeline li::before { background: var(--color-success); }
.experience-placeholder {
  font-size: 0.85rem; color: var(--color-muted); padding: 8px 0;
}

.experience-timeline li strong { display: block; }
.experience-timeline .exp-company { color: var(--color-muted); font-size: 0.85rem; }

.toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  display: flex; flex-direction: column; gap: 8px; max-width: min(360px, 90vw);
}
.toast {
  padding: 12px 16px; border-radius: 10px; font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); animation: toast-in 0.25s ease;
}
.toast-success { background: #059669; color: #fff; }
.toast-error { background: #dc2626; color: #fff; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.module-placeholder-icon { font-size: 2.5rem; margin-bottom: 16px; }

.activity-item { padding: 10px 0; border-bottom: 1px solid #f3f4f6; font-size: 0.85rem; }
.activity-item .time { color: var(--color-muted); font-size: 0.75rem; }

.match-layout { display: grid; grid-template-columns: 340px 1fr; gap: 20px; }
@media (max-width: 900px) { .match-layout { grid-template-columns: 1fr; } }

.match-card {
  padding: 16px; margin-bottom: 12px;
  display: flex; gap: 14px; align-items: flex-start;
}
.match-rank {
  width: 28px; height: 28px; border-radius: 50%;
  background: #fef3c7; color: #b45309;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.match-reason { font-size: 0.8rem; color: var(--color-muted); margin-top: 6px; }

.profile-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--color-border); margin-bottom: 20px; overflow-x: auto; }
.profile-tab {
  padding: 10px 16px; border: none; background: none;
  font-family: inherit; font-size: 0.85rem; font-weight: 500;
  color: var(--color-muted); cursor: pointer; border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.profile-tab.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.timeline { list-style: none; padding-left: 16px; border-left: 2px solid #e5e7eb; }
.timeline li { padding: 0 0 16px 16px; position: relative; font-size: 0.85rem; }
.timeline li::before {
  content: ''; position: absolute; left: -21px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary);
}

.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 200; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 16px; padding: 24px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal.modal-wide { max-width: 720px; }
.modal h2 { font-size: 1.2rem; margin-bottom: 16px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* Add candidate — stepped sheet */
.modal.modal-add-candidate {
  padding: 0; max-width: 560px; max-height: min(92vh, 720px);
  overflow: hidden; display: flex; flex-direction: column;
}
.add-candidate {
  display: flex; flex-direction: column; min-height: 0; flex: 1;
  max-width: 100%;
}
.add-candidate-header {
  flex-shrink: 0; padding: 20px 20px 12px; border-bottom: 1px solid var(--color-border);
  position: relative;
}
.add-candidate-close {
  position: absolute; top: 12px; right: 12px;
  width: 44px; height: 44px; border: none; border-radius: var(--radius-btn);
  background: transparent; font-size: 1.5rem; line-height: 1; cursor: pointer;
  color: var(--color-muted); display: flex; align-items: center; justify-content: center;
}
.add-candidate-close:hover { background: #f3f4f6; color: var(--color-text); }
.add-candidate-header h2 {
  font-size: 1.15rem; font-weight: 700; margin: 0 44px 4px 0; line-height: 1.3;
}
.add-candidate-subtitle {
  font-size: 0.8rem; color: var(--color-muted); margin: 0 0 14px;
}
.add-candidate-steps {
  display: flex; align-items: center; gap: 0; flex-wrap: nowrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 2px;
}
.add-candidate-steps::-webkit-scrollbar { display: none; }
.add-candidate-step-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; color: var(--color-muted);
  white-space: nowrap; flex-shrink: 0;
}
.add-candidate-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--color-border); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.add-candidate-step-pill.is-active { color: var(--color-primary); }
.add-candidate-step-pill.is-active .add-candidate-step-num {
  border-color: var(--color-primary); background: var(--color-primary-light);
  color: var(--color-primary);
}
.add-candidate-step-pill.is-done { color: var(--color-success); }
.add-candidate-step-pill.is-done .add-candidate-step-num {
  border-color: var(--color-success); background: #dcfce7; color: var(--color-success);
}
.add-candidate-step-line {
  flex: 1; min-width: 12px; max-width: 28px; height: 2px;
  background: var(--color-border); margin: 0 6px;
}
.add-candidate-body {
  flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden;
  padding: 16px 20px; -webkit-overflow-scrolling: touch;
}
.add-candidate-panel { max-width: 100%; }
.add-candidate-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 16px; margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.add-candidate-card:last-child { margin-bottom: 0; }
.add-candidate-card-title {
  font-size: 0.9rem; font-weight: 700; margin: 0 0 4px;
}
.add-candidate-card-desc {
  font-size: 0.8rem; color: var(--color-muted); margin: 0 0 14px;
}
.add-candidate-card .form-group:last-child { margin-bottom: 0; }
.add-candidate-dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; min-height: 160px; padding: 24px 16px;
  border: 2px dashed var(--color-border); border-radius: var(--radius-card);
  background: var(--color-bg); cursor: pointer; text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.add-candidate-dropzone:hover,
.add-candidate-dropzone:focus-visible,
.add-candidate-dropzone.is-dragover {
  border-color: var(--color-primary); background: var(--color-primary-light);
  outline: none;
}
.add-candidate-dropzone.has-file { border-style: solid; border-color: var(--color-primary); }
.add-candidate-dropzone.is-loading { pointer-events: none; opacity: 0.85; }
.add-candidate-dropzone-icon { font-size: 2rem; line-height: 1; }
.add-candidate-dropzone-title { font-size: 0.95rem; font-weight: 600; }
.add-candidate-dropzone-hint,
.add-candidate-dropzone-formats { font-size: 0.8rem; color: var(--color-muted); }
.add-candidate-dropzone-file {
  font-size: 0.85rem; font-weight: 600; color: var(--color-primary);
  margin-top: 4px; word-break: break-word; max-width: 100%;
}
.add-candidate-status {
  font-size: 0.8rem; color: var(--color-muted); margin: 12px 0 0; line-height: 1.4;
}
.add-candidate-status.is-success { color: var(--color-success); }
.add-candidate-status.is-error { color: var(--color-danger); }
.add-candidate-status.is-loading { color: var(--color-primary); }
.add-candidate-preview-empty,
.add-candidate-preview-file,
.add-candidate-preview-stats {
  font-size: 0.85rem; color: var(--color-muted); margin: 0 0 10px;
}
.add-candidate-preview-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px;
}
.add-candidate-chip {
  display: inline-block; padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 500;
  background: var(--color-primary-light); color: var(--color-primary);
  border: 1px solid #bfdbfe; max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}
.add-candidate-preview-summary {
  font-size: 0.82rem; line-height: 1.45; color: var(--color-text);
  padding: 12px; background: var(--color-bg); border-radius: 8px; margin: 0;
}
.add-candidate-footer {
  flex-shrink: 0; display: flex; flex-wrap: wrap; gap: 10px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--color-border); background: var(--color-surface);
  position: sticky; bottom: 0; z-index: 2;
}
.add-candidate-footer .btn {
  min-height: 44px; flex: 1 1 auto;
}
.add-candidate-footer .btn-primary { flex: 2 1 140px; }
.add-candidate-footer .add-candidate-btn-skip { flex: 1 1 100%; }
.modal-add-candidate .location-picker .lp-suggestions {
  position: relative; z-index: 5; margin-top: 4px;
  border: 1px solid var(--color-border); border-radius: var(--radius-btn);
  background: #fff; box-shadow: var(--shadow-card); max-height: 220px; overflow-y: auto;
}
.modal-add-candidate .lp-suggestion-item {
  display: block; width: 100%; text-align: left; padding: 12px 14px;
  min-height: 44px; border: none; border-bottom: 1px solid #f3f4f6;
  background: #fff; font-family: inherit; font-size: 0.9rem; cursor: pointer;
}
.modal-add-candidate .lp-suggestion-item:hover { background: var(--color-primary-light); }
.modal-add-candidate .location-picker select,
.modal-add-candidate .location-picker input[type="search"] {
  min-height: 44px;
}

@media (max-width: 768px) {
  .modal-overlay.modal-overlay--sheet {
    padding: 0; align-items: stretch;
  }
  .modal-overlay.modal-overlay--sheet.open {
    display: flex;
  }
  .modal.modal-add-candidate {
    max-width: none; width: 100%; max-height: none; height: 100%;
    border-radius: 0; margin: 0;
  }
  .add-candidate { height: 100%; }
  .add-candidate-header { padding-top: max(16px, env(safe-area-inset-top, 0px)); }
  .add-candidate-footer {
    flex-direction: column;
  }
  .add-candidate-footer .btn,
  .add-candidate-footer .btn-primary {
    width: 100%; flex: none;
  }
  .add-candidate-footer .add-candidate-btn-back { order: 2; }
  .add-candidate-footer .add-candidate-btn-skip { order: 3; }
  .add-candidate-footer .add-candidate-btn-next,
  .add-candidate-footer .add-candidate-btn-save { order: 1; }
}

.pagination { display: flex; gap: 4px; justify-content: flex-end; margin-top: 16px; }
.pagination button {
  padding: 6px 12px; border: 1px solid var(--color-border);
  background: #fff; border-radius: 6px; cursor: pointer; font-family: inherit;
}
.pagination button.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.empty-state { text-align: center; padding: 40px; color: var(--color-muted); }

.upload-zone {
  border: 2px dashed var(--color-border); border-radius: var(--radius-card);
  padding: 40px; text-align: center; cursor: pointer;
}
.upload-zone:hover,
.upload-zone.upload-zone--active {
  border-color: var(--color-primary); background: var(--color-primary-light);
}

.candidate-portal .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.candidate-portal .status-history-item {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: baseline; gap: 8px;
}
@media (max-width: 520px) {
  .candidate-portal .form-row { grid-template-columns: 1fr; }
  .candidate-portal .upload-zone { padding: 24px 16px; }
  .candidate-portal .card-header-row {
    flex-direction: column; align-items: flex-start !important;
  }
}

.ai-chat-help {
  padding: 0 16px 8px;
  border-bottom: 1px solid var(--color-border);
}
.ai-chat-help-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-primary);
  background: var(--color-primary-light, #eef2ff);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}
.ai-chat-help-chip:hover { opacity: 0.9; }
.ai-chat-help-panel {
  margin-top: 8px;
  padding: 10px 12px;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
}
.ai-chat-cap-list {
  margin: 0;
  padding-left: 1.1rem;
}
.ai-chat-cap-list li { margin-bottom: 4px; }
.ai-chat-cap-list li.ai-chat-cap-limit { color: var(--color-muted); }
.ai-chat-msg-assistant .ai-chat-cap-list {
  margin-top: 6px;
  margin-bottom: 6px;
}

.profile-edit-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.profile-edit-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.profile-edit-section-title {
  font-size: 0.9rem;
  margin: 0 0 12px;
  color: var(--color-text);
}
.profile-edit-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.profile-edit-section-head .profile-edit-section-title {
  margin-bottom: 0;
}
.profile-edit-row {
  background: #f9fafb;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.profile-edit-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.profile-edit-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  cursor: pointer;
}
.form-hint {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 4px;
}
.profile-edit-modal-body,
.modal-scroll {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 4px;
}
