/* CopWeb – Police MDT Web Interface */
/* Primary accent: #4f88ff (police blue) instead of #ffc24d (mechanic yellow) */

.desktop-window[data-app="copweb"] {
  width: min(1280px, calc(100vw - 180px));
  height: min(820px, calc(100vh - 180px));
}

.desktop-window[data-app="copweb"] .window-content {
  padding: 0;
  overflow: hidden;
}

.app.copweb-app {
  height: 100%;
  min-height: 100%;
  color: #e8edf7;
}

/* ─── Shell Layout ─────────────────────────────────────────────────────────── */

.copweb-shell {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  height: 100%;
  min-height: 100%;
  background: linear-gradient(180deg, #1c2333 0%, #161e2e 100%);
  border-radius: 24px;
  overflow: hidden;
}

/* ─── Sidebar ──────────────────────────────────────────────────────────────── */

.copweb-sidebar {
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(14, 20, 34, 0.97), rgba(20, 28, 44, 0.92));
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.copweb-sidebar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(79, 136, 255, 0.18), rgba(122, 53, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(7, 11, 18, 0.28);
  flex-shrink: 0;
}

.copweb-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(145deg, #4f88ff, #8ab0ff);
  box-shadow: 0 8px 18px rgba(79, 136, 255, 0.38);
}

.copweb-brand-title {
  font-size: 18px;
  font-weight: 700;
  color: #f0f4ff;
}

.copweb-brand-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(232, 237, 247, 0.64);
}

.copweb-nav-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.copweb-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 237, 247, 0.38);
  padding: 0 6px;
  margin-bottom: 2px;
}

.copweb-nav-btn {
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(232, 237, 247, 0.78);
  text-align: left;
  padding: 11px 14px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.copweb-nav-btn:hover {
  background: rgba(79, 136, 255, 0.1);
  color: #c8daff;
  transform: translateX(2px);
}

.copweb-nav-btn.active {
  background: rgba(79, 136, 255, 0.18);
  color: #d8e8ff;
  transform: translateX(2px);
  box-shadow: inset 3px 0 0 rgba(79, 136, 255, 0.7);
}

/* ─── Main Panel ───────────────────────────────────────────────────────────── */

.copweb-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.copweb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.copweb-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(79, 136, 255, 0.7);
}

.copweb-topbar h2 {
  margin: 6px 0 0;
  font-size: 30px;
  font-weight: 700;
  color: #f0f4ff;
}

.copweb-topbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(232, 237, 247, 0.82);
  font-size: 13px;
  white-space: nowrap;
}

/* ─── Banner ───────────────────────────────────────────────────────────────── */

.copweb-banner {
  margin: 16px 28px 0;
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  flex-shrink: 0;
}

.copweb-banner.is-error {
  background: rgba(255, 106, 106, 0.14);
  border: 1px solid rgba(255, 122, 122, 0.28);
  color: #ffd8d8;
}

.copweb-banner.is-success {
  background: rgba(78, 213, 160, 0.15);
  border: 1px solid rgba(78, 213, 160, 0.28);
  color: #dbfff0;
}

.copweb-banner.is-info {
  background: rgba(79, 136, 255, 0.14);
  border: 1px solid rgba(79, 136, 255, 0.28);
  color: #d8e8ff;
}

.copweb-banner button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* ─── Content Area ─────────────────────────────────────────────────────────── */

.copweb-content {
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 22px 28px 28px;
}

/* ─── Loading / Empty ──────────────────────────────────────────────────────── */

.copweb-loading,
.copweb-empty {
  min-height: 220px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  color: rgba(232, 237, 247, 0.68);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.copweb-empty-compact {
  min-height: 0;
  padding: 18px 20px;
}

.copweb-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #4f88ff;
  animation: copweb-spin 0.9s linear infinite;
}

@keyframes copweb-spin {
  to { transform: rotate(360deg); }
}

/* ─── Grid Layouts ─────────────────────────────────────────────────────────── */

.copweb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.copweb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.copweb-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.copweb-grid-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

/* ─── Cards & Panels ───────────────────────────────────────────────────────── */

.copweb-card,
.copweb-panel,
.copweb-table-wrap,
.copweb-note-card {
  border-radius: 22px;
  background: rgba(17, 22, 31, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 28px rgba(4, 8, 18, 0.22);
}

.copweb-card {
  padding: 20px;
}

.copweb-card-label {
  font-size: 13px;
  color: rgba(232, 237, 247, 0.56);
}

.copweb-card-value {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 800;
  color: #d8e8ff;
}

.copweb-card-sub {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(232, 237, 247, 0.66);
}

/* Warning cards for "Gesucht" entries – yellow accent */
.copweb-card-warning {
  background: rgba(255, 194, 77, 0.08);
  border-color: rgba(255, 194, 77, 0.22);
}

.copweb-card-warning .copweb-card-value {
  color: #ffe49c;
}

.copweb-card-warning .copweb-card-label {
  color: rgba(255, 224, 140, 0.72);
}

.copweb-panel {
  padding: 22px;
}

.copweb-panel h3 {
  margin: 0 0 16px;
  font-size: 20px;
  color: #f0f4ff;
}

.copweb-section-gap {
  margin-top: 18px;
}

/* ─── Toolbar ──────────────────────────────────────────────────────────────── */

.copweb-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.copweb-toolbar-left,
.copweb-toolbar-right,
.copweb-inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */

.copweb-btn,
.copweb-btn-success,
.copweb-btn-secondary,
.copweb-btn-danger,
.copweb-btn-ghost,
.copweb-btn-warning {
  border: 0;
  border-radius: 14px;
  padding: 11px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.copweb-btn:hover,
.copweb-btn-success:hover,
.copweb-btn-secondary:hover,
.copweb-btn-danger:hover,
.copweb-btn-ghost:hover,
.copweb-btn-warning:hover {
  transform: translateY(-1px);
}

/* Primary – blue */
.copweb-btn {
  color: #fff;
  background: linear-gradient(135deg, #4f88ff, #7ca9ff);
  box-shadow: 0 14px 24px rgba(79, 136, 255, 0.26);
}

.copweb-btn-success {
  color: #fff;
  background: linear-gradient(135deg, #22b8a5, #46d4c4);
  box-shadow: 0 14px 24px rgba(34, 184, 165, 0.24);
}

.copweb-btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #7a35ff, #8f50ff);
  box-shadow: 0 14px 24px rgba(122, 53, 255, 0.24);
}

.copweb-btn-danger {
  color: #fff;
  background: linear-gradient(135deg, #ff7272, #ff8d8d);
  box-shadow: 0 14px 24px rgba(255, 114, 114, 0.22);
}

.copweb-btn-ghost {
  color: #dce6f7;
  background: rgba(255, 255, 255, 0.07);
}

/* Warning (yellow) – used for "Fahndung" toggle etc. */
.copweb-btn-warning {
  color: #1a1c22;
  background: linear-gradient(135deg, #ffc24d, #ffe89c);
  box-shadow: 0 14px 24px rgba(255, 194, 77, 0.2);
}

.copweb-btn[disabled],
.copweb-btn-success[disabled],
.copweb-btn-secondary[disabled],
.copweb-btn-danger[disabled],
.copweb-btn-ghost[disabled],
.copweb-btn-warning[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── Search Field ─────────────────────────────────────────────────────────── */

.copweb-search {
  min-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #f4f8ff;
  padding: 12px 14px;
  font: inherit;
}

.copweb-search::placeholder,
.copweb-field::placeholder,
.copweb-textarea::placeholder {
  color: rgba(232, 237, 247, 0.34);
}

/* ─── Table ────────────────────────────────────────────────────────────────── */

.copweb-table-wrap {
  overflow: hidden;
}

.copweb-table {
  width: 100%;
  border-collapse: collapse;
}

.copweb-table th,
.copweb-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}

.copweb-table th {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 237, 247, 0.52);
  background: rgba(255, 255, 255, 0.02);
}

.copweb-table tr:last-child td {
  border-bottom: 0;
}

.copweb-table tr:hover td {
  background: rgba(79, 136, 255, 0.04);
}

.copweb-row-title {
  font-weight: 700;
  color: #f0f4ff;
}

.copweb-row-sub {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(232, 237, 247, 0.54);
}

/* ─── Badges ───────────────────────────────────────────────────────────────── */

.copweb-badge,
.copweb-status-badge,
.copweb-note-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.copweb-badge-blue {
  background: rgba(79, 136, 255, 0.18);
  color: #ccdeff;
}

.copweb-badge-warning {
  background: rgba(255, 194, 77, 0.16);
  color: #ffe49c;
}

.copweb-badge-danger {
  background: rgba(255, 122, 122, 0.16);
  color: #ffd7d7;
}

.copweb-badge-ok,
.copweb-status-badge.status-ok {
  background: rgba(78, 213, 160, 0.18);
  color: #d7fff0;
}

.copweb-status-badge.status-warning {
  background: rgba(255, 194, 77, 0.16);
  color: #ffe6a7;
}

.copweb-status-badge.status-danger {
  background: rgba(255, 122, 122, 0.18);
  color: #ffd6d6;
}

.copweb-note-badge {
  background: rgba(79, 136, 255, 0.18);
  color: #ccdeff;
}

/* ─── Note Card ────────────────────────────────────────────────────────────── */

.copweb-note-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.copweb-note-title {
  margin: 0;
  font-size: 22px;
  color: #c8daff;
}

.copweb-note-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(232, 237, 247, 0.58);
  font-size: 13px;
}

.copweb-note-body {
  margin: 0;
  color: rgba(235, 239, 247, 0.88);
  line-height: 1.65;
  white-space: pre-wrap;
}

/* ─── Employee Hero ────────────────────────────────────────────────────────── */

.copweb-employee-hero {
  margin-bottom: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.copweb-employee-hero.is-suspended {
  border-color: rgba(255, 122, 122, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 122, 0.08);
}

.copweb-employee-hero-main {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 22px;
}

.copweb-employee-hero-kicker {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 237, 247, 0.52);
}

.copweb-employee-hero h3 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #f0f4ff;
}

.copweb-employee-hero p {
  margin: 0;
  color: rgba(235, 239, 247, 0.72);
}

.copweb-employee-hero-status {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.copweb-employee-hero-sub {
  color: rgba(235, 239, 247, 0.68);
  line-height: 1.5;
}

.copweb-employee-entry-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 12px;
}

.copweb-employee-entry-card.is-open {
  box-shadow: inset 3px 0 0 rgba(255, 194, 77, 0.7);
}

.copweb-employee-entry-card.is-closed {
  box-shadow: inset 3px 0 0 rgba(78, 213, 160, 0.7);
}

.copweb-employee-entry-author {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  color: #c8daff;
}

/* ─── List Rows ────────────────────────────────────────────────────────────── */

.copweb-list-plain {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.copweb-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.copweb-list-row strong {
  display: block;
  color: #f0f4ff;
}

.copweb-list-row span {
  color: rgba(232, 237, 247, 0.54);
  font-size: 13px;
}

/* ─── Reports ──────────────────────────────────────────────────────────────── */

.copweb-report-card,
.copweb-history-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.copweb-report-meta {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: rgba(232, 237, 247, 0.66);
  font-size: 14px;
}

.copweb-report-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.copweb-report-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.copweb-report-group {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.copweb-report-group strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(232, 237, 247, 0.6);
}

/* ─── Form ─────────────────────────────────────────────────────────────────── */

.copweb-form {
  display: grid;
  gap: 18px;
}

.copweb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.copweb-form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.copweb-form-span-2 {
  grid-column: 1 / -1;
}

.copweb-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(232, 237, 247, 0.78);
}

.copweb-field,
.copweb-textarea,
.copweb-select {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #f4f8ff;
  padding: 13px 14px;
  font: inherit;
}

.copweb-textarea {
  min-height: 160px;
  resize: vertical;
}

.copweb-textarea-compact {
  min-height: 100px;
}

.copweb-select option {
  background: #1c2333;
}

/* ─── Chip ─────────────────────────────────────────────────────────────────── */

.copweb-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.copweb-chip-blue {
  background: rgba(79, 136, 255, 0.16);
  border: 1px solid rgba(79, 136, 255, 0.22);
  color: #c0d8ff;
}

.copweb-chip-passed {
  background: rgba(72, 219, 171, 0.16);
  border: 1px solid rgba(72, 219, 171, 0.2);
  color: #baffea;
}

.copweb-chip-failed {
  background: rgba(255, 132, 132, 0.18);
  border: 1px solid rgba(255, 132, 132, 0.22);
  color: #ffd7d7;
}

/* ─── File Detail (Citizen Profile) ───────────────────────────────────────── */

.copweb-file-hero {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  padding: 24px;
  margin-bottom: 22px;
}

.copweb-file-hero.is-wanted {
  border-color: rgba(255, 194, 77, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 194, 77, 0.1),
              0 4px 24px rgba(255, 194, 77, 0.08);
}

.copweb-file-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.copweb-file-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.copweb-file-meta-item small {
  font-size: 12px;
  color: rgba(232, 237, 247, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.copweb-file-meta-item span {
  font-size: 15px;
  color: #f0f4ff;
  font-weight: 600;
}

/* Entry cards within file */
.copweb-entry-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
  padding: 18px;
  margin-bottom: 12px;
}

.copweb-entry-card.is-wanted {
  border-color: rgba(255, 194, 77, 0.3);
  box-shadow: inset 3px 0 0 rgba(255, 194, 77, 0.7);
}

.copweb-entry-card.is-closed {
  opacity: 0.7;
  box-shadow: inset 3px 0 0 rgba(78, 213, 160, 0.6);
}

/* ─── Investigation ────────────────────────────────────────────────────────── */

.copweb-investigation-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 22, 31, 0.44);
  padding: 18px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: background 0.16s ease;
}

.copweb-investigation-card:hover {
  background: rgba(79, 136, 255, 0.06);
}

.copweb-investigation-card.is-closed {
  opacity: 0.65;
}

.copweb-investigation-entry {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  margin-bottom: 10px;
}

.copweb-investigation-entry.is-important {
  border-color: rgba(255, 194, 77, 0.28);
  box-shadow: inset 3px 0 0 rgba(255, 194, 77, 0.7);
}

/* ─── Law Book ─────────────────────────────────────────────────────────────── */

.copweb-law-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px 18px;
  align-items: start;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.copweb-law-row:last-child {
  border-bottom: 0;
}

.copweb-law-paragraph {
  font-size: 14px;
  font-weight: 800;
  color: #8ab0ff;
}

/* ─── Evidence Room ────────────────────────────────────────────────────────── */

.copweb-evidence-room-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 22, 31, 0.44);
  padding: 18px;
  margin-bottom: 14px;
}

/* ─── Wanted List ──────────────────────────────────────────────────────────── */

.copweb-wanted-row {
  border-left: 3px solid rgba(255, 194, 77, 0.7);
}

/* ─── Misc ─────────────────────────────────────────────────────────────────── */

.copweb-inline-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copweb-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(232, 237, 247, 0.82);
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 18px;
  transition: background 0.16s ease;
}

.copweb-back-btn:hover {
  background: rgba(79, 136, 255, 0.12);
  color: #c8daff;
}

.copweb-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 22px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Scrollbar ────────────────────────────────────────────────────────────── */

.copweb-sidebar::-webkit-scrollbar,
.copweb-content::-webkit-scrollbar {
  width: 6px;
}

.copweb-sidebar::-webkit-scrollbar-track,
.copweb-content::-webkit-scrollbar-track {
  background: transparent;
}

.copweb-sidebar::-webkit-scrollbar-thumb,
.copweb-content::-webkit-scrollbar-thumb {
  background: rgba(79, 136, 255, 0.28);
  border-radius: 999px;
}
