/* ═══════════════════════════════════════════════════════════
   BSA CUSTOM ADMIN DASHBOARD
═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #09090C;
  --sidebar-bg:  #111116;
  --surface:     #16161E;
  --surface-2:   #1E1E28;
  --border:      rgba(255, 255, 255, 0.07);
  --border-2:    rgba(255, 255, 255, 0.13);
  --accent:      #F0A050;
  --accent-hov:  #E09040;
  --accent-dim:  rgba(240, 160, 80, 0.12);
  --text:        #F4F4F6;
  --text-2:      rgba(244, 244, 246, 0.55);
  --text-3:      rgba(244, 244, 246, 0.3);
  --green:       #22c55e;
  --green-dim:   rgba(34, 197, 94, 0.14);
  --red:         #ef4444;
  --red-dim:     rgba(239, 68, 68, 0.14);
  --sidebar-w:   260px;
  --radius:      10px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.db-body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Layout ────────────────────────────────────────────────── */
.db-wrap {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.db-sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  position: fixed;
  top: 0; left: 0;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.25s ease;
}

.db-sidebar-header {
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--border);
}

.db-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.db-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.db-logo-sub {
  color: var(--accent);
}

/* ── Navigation ─────────────────────────────────────────────── */
.db-nav {
  padding: 14px 10px;
  flex: 1;
  overflow-y: auto;
}

.db-nav-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding: 6px 10px 4px;
  margin-top: 4px;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
  margin-bottom: 1px;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}

.db-nav-item:hover {
  background: var(--surface-2);
  color: var(--text);
}

.db-nav-item.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.db-nav-item.active svg {
  opacity: 1;
  color: var(--accent);
}

.db-nav-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}

.db-nav-badge {
  margin-left: auto;
  background: var(--surface-2);
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}

.db-nav-item.active .db-nav-badge {
  background: rgba(240, 160, 80, 0.2);
  color: var(--accent);
}

.db-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 10px;
}

/* ── Sidebar footer ─────────────────────────────────────────── */
.db-sidebar-footer {
  padding: 8px 10px 14px;
  border-top: 1px solid var(--border);
}

.db-logout-btn {
  color: var(--text-2) !important;
}

.db-logout-btn:hover {
  color: var(--red) !important;
  background: var(--red-dim) !important;
}

/* ── Main content area ──────────────────────────────────────── */
.db-main {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Top bar ────────────────────────────────────────────────── */
.db-topbar {
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.db-topbar-left { display: flex; flex-direction: column; gap: 3px; }

.db-page-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.db-breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-3);
}

.db-breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
}

.db-breadcrumb a:hover { color: var(--accent); }

.db-breadcrumb svg { opacity: 0.5; }

.db-topbar-actions { display: flex; align-items: center; gap: 10px; }

/* ── Content ─────────────────────────────────────────────────── */
.db-content { padding: 28px 32px; flex: 1; }

/* ── Overview cards ──────────────────────────────────────────── */
.db-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.db-ov-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}

.db-ov-card:hover {
  border-color: var(--border-2);
  transform: translateY(-1px);
}

.db-ov-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--card-color, var(--accent));
}

.db-ov-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--card-dim, var(--accent-dim));
}

.db-ov-icon svg { color: var(--card-color, var(--accent)); }

.db-ov-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 3px;
}

.db-ov-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.db-ov-sub {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 3px;
}

.db-ov-link {
  font-size: 12px;
  color: var(--card-color, var(--accent));
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

/* ── Section card (table container) ─────────────────────────── */
.db-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.db-table th {
  padding: 11px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.db-table td {
  padding: 13px 16px;
  font-size: 13.5px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

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

.db-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.db-table td.col-name {
  font-weight: 600;
  color: var(--text);
  max-width: 180px;
}

.db-table td.col-script {
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-3);
  font-size: 13px;
}

.db-table td.col-actions {
  white-space: nowrap;
  text-align: right;
}

/* ── Empty state ─────────────────────────────────────────────── */
.db-empty {
  padding: 52px 32px;
  text-align: center;
}

.db-empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
}

.db-empty-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.db-empty-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}

/* ── Badges ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.badge-active   { background: var(--green-dim); color: var(--green); }
.badge-inactive { background: rgba(255,255,255,0.06); color: var(--text-3); }

.badge-type {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.13s;
  white-space: nowrap;
  font-family: var(--font);
  line-height: 1;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { background: var(--accent-hov); }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-2);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text);
}

.btn-danger {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.btn-danger:hover { background: rgba(239, 68, 68, 0.22); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 6px 8px;
}
.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--text);
}

.btn-icon { padding: 6px 6px; border-radius: 6px; }
.btn-sm   { padding: 5px 11px; font-size: 12px; }

.btn-icon-orange { color: var(--accent) !important; }
.btn-icon-red    { color: var(--red) !important; }

/* ── Move arrows ─────────────────────────────────────────────── */
.move-btns {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.move-btns form { display: block; }
.move-btns button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-3);
  cursor: pointer;
  font-size: 11px;
  padding: 0;
  transition: all 0.12s;
  font-family: var(--font);
}

.move-btns button:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
  color: var(--text);
}

/* ── Toggle button ───────────────────────────────────────────── */
.toggle-form { display: inline; }

.btn-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.13s;
}

.btn-toggle.on  { background: var(--green-dim); color: var(--green); }
.btn-toggle.off { background: rgba(255,255,255,0.06); color: var(--text-3); }
.btn-toggle.on:hover  { background: rgba(34, 197, 94, 0.22); }
.btn-toggle.off:hover { background: rgba(255,255,255,0.1); color: var(--text-2); }

/* ── Forms ───────────────────────────────────────────────────── */
.db-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 760px;
}

.db-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

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

.field-group { display: flex; flex-direction: column; gap: 6px; }

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

.field-label .req { color: var(--accent); margin-left: 2px; }

.db-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.db-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 160, 80, 0.1);
}

.db-textarea { min-height: 90px; resize: vertical; }

.db-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='rgba(255%2C255%2C255%2C0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.db-select option { background: #1E1E28; }

.db-check {
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--accent);
  cursor: pointer;
}

.field-hint {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

.field-error { font-size: 12px; color: var(--red); }

.has-error .db-input {
  border-color: rgba(239, 68, 68, 0.5);
}

/* checkbox field row */
.field-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field-check-row .field-label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
}

/* file input */
.db-file-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.db-file-wrap a { color: var(--accent); font-size: 13px; }

.db-file-wrap input[type="file"] {
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  font-family: var(--font);
}

.db-file-wrap input[type="checkbox"] {
  accent-color: var(--accent);
}

.db-file-wrap label { font-size: 12px; color: var(--text-3); }

/* form actions */
.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.form-actions .ml-auto { margin-left: auto; }

/* settings fieldset groups */
.db-fieldset {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.db-fieldset-header {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.db-fieldset-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.db-fieldset-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Toast notifications ────────────────────────────────────── */
.toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastIn 0.25s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.toast-success .toast-icon { background: var(--green-dim); color: var(--green); }
.toast-error   .toast-icon { background: var(--red-dim);   color: var(--red); }
.toast-info    .toast-icon { background: var(--accent-dim); color: var(--accent); }

.toast-text { flex: 1; font-size: 13.5px; font-weight: 500; color: var(--text); }

.toast-close {
  background: transparent;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
  font-family: var(--font);
}

.toast-close:hover { color: var(--text-2); }

/* ── Delete modal ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 32px;
  width: 380px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: modalIn 0.2s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(-8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-dim);
  border: 1px solid rgba(239,68,68,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--red);
}

.modal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-actions { display: flex; gap: 10px; justify-content: center; }

/* ── Login page ─────────────────────────────────────────────── */
.db-login-body {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.db-login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  width: 380px;
}

.db-login-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.db-login-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.db-login-logo-text span { color: var(--accent); }

.db-login-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.db-login-sub {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 28px;
}

.db-login-form { display: flex; flex-direction: column; gap: 16px; }

.db-login-error {
  background: var(--red-dim);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--red);
}

.db-login-note {
  font-size: 11.5px;
  color: var(--text-3);
  text-align: center;
  margin-top: 16px;
}

/* ── Audio file current ─────────────────────────────────────── */
.db-file-current {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.db-file-current a { color: var(--accent); }

.db-file-clear-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
}

/* ── Responsive ─────────────────────────────────────────────── */
.db-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 900px) {
  .db-sidebar {
    transform: translateX(-100%);
  }

  .db-sidebar.open {
    transform: translateX(0);
  }

  .db-main {
    margin-left: 0;
  }

  .db-hamburger { display: flex; }

  .db-content { padding: 20px 16px; }

  .db-topbar { padding: 16px 20px; }

  .db-form-card { padding: 20px; }

  .db-form-grid-2 { grid-template-columns: 1fr; }

  .db-table th:nth-child(3),
  .db-table td:nth-child(3) { display: none; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-muted { color: var(--text-3); }
.text-accent { color: var(--accent); }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.flex-gap { display: flex; align-items: center; gap: 8px; }

/* ── Booking Detail Modal ───────────────────────────────── */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9200;
  backdrop-filter: blur(5px);
  padding: 20px;
}
.bk-overlay.open { display: flex; }

.bk-modal {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 540px;
  position: relative;
  animation: modalIn 0.2s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.bk-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.13s;
}
.bk-close:hover { color: var(--text); background: rgba(255,255,255,0.1); }

.bk-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.bk-avatar {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.bk-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.bk-email {
  font-size: 13.5px;
  color: var(--accent);
  text-decoration: none;
}
.bk-email:hover { text-decoration: underline; }

.bk-date {
  font-size: 12px;
  color: var(--text-3);
  margin: 14px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.bk-section-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 10px;
}

.bk-text-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  white-space: pre-wrap;
  font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
  min-height: 80px;
  word-break: break-word;
}

.bk-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
