/* ============================================================
   VaultBridge Portal — Client Portal CSS  (Apple-style)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Auth ─────────────────────────────────────────────────── */
.vbp-auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--vbp-sidebar-bg, #1d3557) 0%, var(--vbp-primary, #2c3e7a) 100%);
  padding: 40px 16px; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
}
.vbp-auth-box {
  background: #fff; border-radius: 20px; padding: 44px 40px 40px;
  width: 100%; max-width: 420px; box-shadow: 0 32px 80px rgba(0,0,0,.25);
}
.vbp-auth-brand { text-align: center; margin-bottom: 32px; }
.vbp-auth-logo { max-height: 56px; margin-bottom: 14px; }
.vbp-auth-heading { font-size: 22px; font-weight: 800; color: var(--vbp-primary, #2c3e7a); margin: 0 0 4px; letter-spacing: -.3px; }
.vbp-auth-sub { font-size: 14px; color: #6b7280; }
.vbp-auth-switch { text-align: center; margin-top: 20px; font-size: 13px; color: #6b7280; }
.vbp-auth-switch a { color: var(--vbp-primary, #2c3e7a); font-weight: 700; text-decoration: none; }
.vbp-field { margin-bottom: 16px; }
.vbp-field label { display: block; font-size: 12px; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.vbp-field--inline { display: flex; justify-content: space-between; align-items: center; }
.vbp-checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #6b7280; }
.vbp-form-row-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── Inputs ─────────────────────────────────────────────────── */
.vbp-input, .vbp-textarea, .vbp-select {
  width: 100%; padding: 11px 14px; border: 1.5px solid #e5e7eb;
  border-radius: 10px; font-size: 14px; color: #111827; background: #fff;
  font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.vbp-input:focus, .vbp-textarea:focus, .vbp-select:focus { outline: none; border-color: var(--vbp-secondary, #457b9d); box-shadow: 0 0 0 3px rgba(69,123,157,.15); }
.vbp-textarea { resize: vertical; }
.vbp-password-wrap { position: relative; }
.vbp-password-wrap .vbp-input { padding-right: 44px; }
.vbp-toggle-pwd { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #9ca3af; font-size: 16px; }
.vbp-link { color: var(--vbp-secondary, #457b9d); font-size: 13px; font-weight: 600; text-decoration: none; }
.vbp-link:hover { text-decoration: underline; }

/* ── Buttons ─────────────────────────────────────────────────── */
.vbp-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; font-size: 14px; font-weight: 700; text-decoration: none;
  font-family: inherit; transition: all .15s ease; white-space: nowrap;
}
.vbp-btn--primary   { background: var(--vbp-primary, #2c3e7a); color: #fff; }
.vbp-btn--secondary { background: var(--vbp-secondary, #457b9d); color: #fff; }
.vbp-btn--accent    { background: var(--vbp-accent, #2d9d6e); color: #fff; }
.vbp-btn--outline   { background: transparent; color: var(--vbp-primary, #2c3e7a); border-color: var(--vbp-primary, #2c3e7a); }
.vbp-btn--ghost     { background: transparent; color: #6b7280; border-color: #e5e7eb; }
.vbp-btn--full      { width: 100%; justify-content: center; margin-top: 4px; }
.vbp-btn--sm        { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.vbp-btn:hover      { opacity: .87; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }

/* ── Alerts ───────────────────────────────────────────────────── */
.vbp-alert { padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.vbp-alert--success { background: #f0fdf4; color: #166534; border-left: 4px solid #22c55e; }
.vbp-alert--danger  { background: #fef2f2; color: #991b1b; border-left: 4px solid #ef4444; }
.vbp-alert--warning { background: #fffbeb; color: #92400e; border-left: 4px solid #f59e0b; }
.vbp-alert--info    { background: #eff6ff; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ── Portal Layout ─────────────────────────────────────────────── */
.vbp-portal-wrap {
  display: flex; min-height: 100vh;
  background: var(--vbp-bg, #f5f6fa);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--vbp-text, #111827);
}

/* ── Sidebar ───────────────────────────────────────────────────── */
.vbp-sidebar {
  width: 248px; min-width: 248px;
  background: var(--vbp-sidebar-bg, #1d3557); color: var(--vbp-sidebar-fg, #ecf0f1);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto; z-index: 50;
  transition: transform .3s ease;
}
.vbp-sidebar__brand { padding: 24px 20px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vbp-sidebar__logo { max-height: 42px; max-width: 170px; }
.vbp-sidebar__name { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -.2px; }
.vbp-sidebar__menu { list-style: none; padding: 10px 0; margin: 0; flex: 1; }
.vbp-sidebar__item { margin: 1px 8px; border-radius: 8px; overflow: hidden; }
.vbp-sidebar__link {
  display: flex; align-items: center; gap: 11px; padding: 10px 14px;
  color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; font-weight: 500;
  border-radius: 8px; transition: all .15s;
}
.vbp-sidebar__link i { width: 18px; text-align: center; font-size: 15px; flex-shrink: 0; }
.vbp-sidebar__item.is-active .vbp-sidebar__link,
.vbp-sidebar__link:hover { color: #fff; background: rgba(255,255,255,.12); }
.vbp-sidebar__item.is-active .vbp-sidebar__link { background: rgba(255,255,255,.18); font-weight: 700; }
.vbp-sidebar__footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.08); }
.vbp-sidebar__logout { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; transition: color .15s; }
.vbp-sidebar__logout:hover { color: #fff; }

/* ── Main ─────────────────────────────────────────────────────── */
.vbp-main { flex: 1; display: flex; flex-direction: column; min-width: 0; overflow: hidden; }

/* ── Topbar ───────────────────────────────────────────────────── */
.vbp-topbar {
  background: #fff; border-bottom: 1px solid #e5e7eb; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 200; box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.vbp-topbar__toggle { background: none; border: none; cursor: pointer; font-size: 20px; color: #6b7280; display: none; padding: 4px; }
.vbp-topbar__right { display: flex; align-items: center; gap: 18px; }
.vbp-topbar__user { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #111827; }
img.vbp-avatar { border-radius: 50%; }

/* ── Notification Bell ─────────────────────────────────────────── */
.vbp-notification-bell { position: relative; }
.vbp-notif-btn { position: relative; background: none; border: none; cursor: pointer; font-size: 20px; color: #6b7280; padding: 6px; border-radius: 8px; transition: background .15s; }
.vbp-notif-btn:hover { background: #f3f4f6; color: #374151; }
.vbp-notif-count { position: absolute; top: -2px; right: -4px; background: #ef4444; color: #fff; border-radius: 20px; font-size: 10px; font-weight: 800; padding: 1px 5px; min-width: 16px; text-align: center; }
.vbp-notif-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; width: 280px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.15); overflow: hidden; z-index: 9999; }
.vbp-notif-dropdown.is-open { display: block; }
.vbp-notif-loading { padding: 20px; text-align: center; color: #6b7280; font-size: 13px; }
.vbp-notif-empty { padding: 20px; text-align: center; color: #9ca3af; font-size: 13px; }
.vbp-notif-item { padding: 12px 16px; border-bottom: 1px solid #f3f4f6; cursor: pointer; transition: background .1s; }
.vbp-notif-item:hover { background: #f9fafb; }
.vbp-notif-item.is-unread { background: #eff6ff; border-left: 3px solid #3b82f6; }
.vbp-notif-title { font-size: 13px; font-weight: 600; color: #111827; margin: 0 0 3px; }
.vbp-notif-time { font-size: 11px; color: #9ca3af; }

/* ── Content ──────────────────────────────────────────────────── */
.vbp-content { padding: 28px 32px 56px; flex: 1; }
.vbp-section-head { margin-bottom: 24px; }
.vbp-section-title { font-size: 22px; font-weight: 800; color: var(--vbp-primary, #2c3e7a); margin: 0 0 4px; letter-spacing: -.3px; }
.vbp-section-subtitle { font-size: 14px; color: #6b7280; }

/* ── Welcome Banner ───────────────────────────────────────────── */
.vbp-welcome-banner {
  background: linear-gradient(135deg, var(--vbp-primary, #2c3e7a) 0%, var(--vbp-secondary, #457b9d) 100%);
  border-radius: 16px; padding: 24px 28px; color: #fff; margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(29,53,87,.25);
}
.vbp-welcome-banner h2 { font-size: 20px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.2px; }
.vbp-welcome-date { opacity: .8; font-size: 13px; }

/* ── Dashboard Widgets ────────────────────────────────────────── */
.vbp-dashboard-widgets { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.vbp-widget { background: #fff; border-radius: 14px; box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04); border: 1px solid #e5e7eb; padding: 20px; }
.vbp-widget--stat { display: flex; align-items: center; gap: 14px; }
.vbp-widget__icon { font-size: 26px; flex-shrink: 0; }
.vbp-widget__value { font-size: 28px; font-weight: 900; line-height: 1; color: #111827; }
.vbp-widget__label { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; font-weight: 600; }
.vbp-widget--progress .vbp-widget__header { font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.vbp-progress-bar { background: #e5e7eb; border-radius: 20px; height: 10px; overflow: hidden; margin-bottom: 6px; }
.vbp-progress-bar__fill { height: 100%; background: linear-gradient(90deg, var(--vbp-secondary, #457b9d), var(--vbp-accent, #2d9d6e)); border-radius: 20px; transition: width .5s ease; }
.vbp-progress-bar__label { font-size: 12px; color: #6b7280; }

/* ── Panels ───────────────────────────────────────────────────── */
.vbp-dashboard-panels { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.vbp-panel { background: #fff; border-radius: 14px; box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04); border: 1px solid #e5e7eb; overflow: hidden; }
.vbp-panel--highlight { border-left: 4px solid var(--vbp-warning, #e07b21); }
.vbp-panel__header { padding: 15px 18px; border-bottom: 1px solid #f0f2f5; }
.vbp-panel__header h3 { margin: 0; font-size: 13px; font-weight: 700; color: var(--vbp-primary, #2c3e7a); text-transform: uppercase; letter-spacing: .5px; }

/* Lists */
.vbp-task-list, .vbp-doc-list, .vbp-apt-list, .vbp-resource-list { list-style: none; }
.vbp-task-item { display: flex; align-items: center; justify-content: space-between; padding: 11px 18px; border-bottom: 1px solid #f3f4f6; font-size: 13px; }
.vbp-task-item:last-child { border-bottom: none; }
.vbp-task-item.is-overdue .vbp-task-item__title { color: #ef4444; }
.vbp-task-item__due { font-size: 11px; color: #9ca3af; }
.vbp-doc-item { display: flex; align-items: center; gap: 12px; padding: 11px 18px; border-bottom: 1px solid #f3f4f6; }
.vbp-doc-item:last-child { border-bottom: none; }
.vbp-doc-icon { font-size: 18px; color: #9ca3af; flex-shrink: 0; }
.vbp-doc-item__info { flex: 1; min-width: 0; }
.vbp-doc-item__title { display: block; font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vbp-doc-meta { font-size: 11px; color: #9ca3af; }
.vbp-apt-item { display: flex; gap: 14px; padding: 12px 18px; border-bottom: 1px solid #f3f4f6; align-items: flex-start; }
.vbp-apt-item:last-child { border-bottom: none; }
.vbp-apt-day { display: block; font-size: 22px; font-weight: 900; line-height: 1; color: var(--vbp-primary, #2c3e7a); }
.vbp-apt-month { display: block; font-size: 10px; text-transform: uppercase; color: #9ca3af; }
.vbp-apt-info { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.vbp-apt-info strong { font-weight: 700; }
.vbp-resource-item { display: flex; gap: 12px; padding: 11px 18px; border-bottom: 1px solid #f3f4f6; align-items: center; font-size: 13px; }
.vbp-resource-item i { color: var(--vbp-secondary, #457b9d); }
.vbp-resource-info strong { display: block; font-weight: 600; }

/* Status badge */
.vbp-status-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .4px; white-space: nowrap; }

/* ── Document Upload ──────────────────────────────────────────── */
.vbp-drop-zone {
  border: 2px dashed #d1d5db; border-radius: 12px; padding: 36px;
  text-align: center; cursor: pointer; transition: all .15s;
  position: relative; margin-bottom: 18px; background: #fafafa;
}
.vbp-drop-zone:hover, .vbp-drop-zone.is-dragover { border-color: var(--vbp-secondary, #457b9d); background: #eff6ff; }
.vbp-drop-zone i { font-size: 40px; color: #d1d5db; margin-bottom: 12px; display: block; }
.vbp-drop-zone p { color: #6b7280; font-size: 14px; margin: 0 0 6px; }
.vbp-file-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.vbp-upload-form { padding: 20px 18px; }

/* ── Messages ─────────────────────────────────────────────────── */
.vbp-messages-layout { display: grid; grid-template-columns: 260px 1fr; gap: 18px; min-height: 60vh; }
.vbp-thread-list { background: #fff; border-radius: 14px; border: 1px solid #e5e7eb; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.vbp-thread-list__header { padding: 14px 16px; border-bottom: 1px solid #f0f2f5; }
.vbp-thread-item { display: flex; flex-direction: column; gap: 2px; padding: 13px 16px; border-bottom: 1px solid #f3f4f6; text-decoration: none; color: #111827; transition: background .1s; }
.vbp-thread-item:hover, .vbp-thread-item.is-active { background: #eff6ff; }
.vbp-thread-item__subject { font-size: 13px; font-weight: 600; }
.vbp-thread-item__date { font-size: 11px; color: #9ca3af; }
.vbp-message-view { background: #fff; border-radius: 14px; border: 1px solid #e5e7eb; padding: 22px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.vbp-messages-thread { display: flex; flex-direction: column; gap: 12px; flex: 1; overflow-y: auto; max-height: 480px; padding: 4px; }
.vbp-msg { display: flex; flex-direction: column; max-width: 76%; }
.vbp-msg--mine { align-self: flex-end; align-items: flex-end; }
.vbp-msg--theirs { align-self: flex-start; }
.vbp-msg__bubble { padding: 11px 16px; border-radius: 16px; font-size: 14px; line-height: 1.5; }
.vbp-msg--mine .vbp-msg__bubble { background: var(--vbp-primary, #2c3e7a); color: #fff; border-bottom-right-radius: 4px; }
.vbp-msg--theirs .vbp-msg__bubble { background: #f3f4f6; color: #111827; border-bottom-left-radius: 4px; }
.vbp-msg__meta { font-size: 11px; color: #9ca3af; margin-top: 4px; }
.vbp-reply-form { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid #e5e7eb; padding-top: 16px; }
.vbp-new-thread-form h3 { font-size: 15px; font-weight: 700; margin: 0 0 16px; }

/* ── Task Board ───────────────────────────────────────────────── */
.vbp-task-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 14px; }
.vbp-task-card { background: #fff; border-radius: 14px; box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04); border: 1px solid #e5e7eb; border-top: 3px solid #d1d5db; padding: 18px; }
.vbp-task-card.is-complete { opacity: .6; border-top-color: var(--vbp-accent, #2d9d6e); }
.vbp-task-card.is-overdue { border-top-color: #ef4444; }
.vbp-task-card__header { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.vbp-task-card__title { font-size: 14px; font-weight: 700; margin: 0 0 8px; color: #111827; }
.vbp-task-card__desc { font-size: 13px; color: #6b7280; margin: 0 0 12px; line-height: 1.5; }
.vbp-task-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; border-top: 1px solid #f3f4f6; padding-top: 12px; }
.vbp-task-due { font-size: 12px; color: #9ca3af; }
.text-danger { color: #ef4444 !important; }
.vbp-complete-check { color: var(--vbp-accent, #2d9d6e); font-size: 13px; font-weight: 600; }
.vbp-badge--required { background: #fffbeb; color: #92400e; font-size: 10px; padding: 2px 8px; border-radius: 20px; font-weight: 700; }

/* ── Appointments ─────────────────────────────────────────────── */
.vbp-apt-section { margin-bottom: 28px; }
.vbp-apt-section h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--vbp-primary, #2c3e7a); text-transform: uppercase; letter-spacing: .5px; }
.vbp-apt-card { background: #fff; border-radius: 14px; border: 1px solid #e5e7eb; padding: 18px; display: flex; gap: 18px; align-items: flex-start; margin-bottom: 12px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.vbp-apt-card__date { text-align: center; min-width: 52px; }
.vbp-apt-card__date .day { display: block; font-size: 30px; font-weight: 900; line-height: 1; color: var(--vbp-primary, #2c3e7a); }
.vbp-apt-card__date .month { display: block; font-size: 11px; text-transform: uppercase; color: #9ca3af; }
.vbp-apt-card__info h4 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.vbp-apt-card__info p { margin: 0 0 4px; font-size: 13px; color: #6b7280; }
.vbp-apt-card__status { margin-left: auto; }
.vbp-past-apt-list { list-style: none; font-size: 13px; color: #6b7280; }
.vbp-past-apt-list li { padding: 8px 0; border-bottom: 1px solid #f3f4f6; }

/* ── Events ───────────────────────────────────────────────────── */
.vbp-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.vbp-event-card { background: #fff; border-radius: 14px; border: 1px solid #e5e7eb; padding: 18px; display: flex; gap: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.vbp-event-card__date .day { display: block; font-size: 28px; font-weight: 900; line-height: 1; color: var(--vbp-primary, #2c3e7a); }
.vbp-event-card__date .month { display: block; font-size: 10px; text-transform: uppercase; color: #9ca3af; min-width: 44px; text-align: center; }
.vbp-event-card__body h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; }
.vbp-event-card__body p { margin: 0 0 4px; font-size: 13px; color: #6b7280; }

/* ── Profile ──────────────────────────────────────────────────── */
.vbp-profile-grid { max-width: 580px; }
.vbp-panel form { padding: 20px 18px; }

/* ── Empty State ──────────────────────────────────────────────── */
.vbp-empty-state-block { text-align: center; padding: 56px 20px; color: #9ca3af; }
.vbp-empty-state-block i { font-size: 52px; margin-bottom: 16px; opacity: .3; display: block; }
.vbp-empty-state-block p { font-size: 14px; margin: 0 0 16px; }

/* ── Request list ─────────────────────────────────────────────── */
.vbp-request-list { list-style: none; }
.vbp-request-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 14px 18px; border-bottom: 1px solid #f3f4f6; }
.vbp-request-item:last-child { border-bottom: none; }
.vbp-request-item__info strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.vbp-request-instr { font-size: 12px; color: #6b7280; margin: 0 0 4px; }
.vbp-request-due { font-size: 11px; color: var(--vbp-warning, #e07b21); font-weight: 600; }

/* ── Portal message (not logged in) ───────────────────────────── */
.vbp-portal-message { text-align: center; padding: 56px 20px; }
.vbp-powered-by, .vbp-footer-text { text-align: center; font-size: 12px; color: #9ca3af; padding: 16px; }

/* ── Sidebar overlay (mobile) ──────────────────────────────────── */
.vbp-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 99; }
.vbp-sidebar.is-open ~ .vbp-sidebar-overlay { display: block; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .vbp-messages-layout { grid-template-columns: 1fr; }
  .vbp-dashboard-panels { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .vbp-sidebar { position: fixed; transform: translateX(-100%); }
  .vbp-sidebar.is-open { transform: translateX(0); }
  .vbp-topbar__toggle { display: block; }
  .vbp-content { padding: 18px 16px 40px; }
  .vbp-dashboard-widgets { grid-template-columns: repeat(2, 1fr); }
  .vbp-auth-box { padding: 30px 22px 28px; }
  .vbp-form-row-cols { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .vbp-dashboard-widgets { grid-template-columns: 1fr; }
  .vbp-task-board { grid-template-columns: 1fr; }
  .vbp-events-grid { grid-template-columns: 1fr; }
}
