:root {
  --bg: #eef1f5;
  --bg-soft: #f7f8fb;
  --card: #ffffff;
  --card-alt: #fff8f2;
  --text: #18212f;
  --muted: #667085;
  --line: #dde3ea;
  --line-strong: #c9d2dc;
  --primary: #ff6a00;
  --primary-deep: #c84d00;
  --primary-soft: #fff0e4;
  --success: #0f8b50;
  --danger: #bf1f28;
  --warning: #d97706;
  --info: #1d4ed8;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  color: var(--text);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.pwa-root {
  min-height: 100dvh;
  height: 100dvh;
}

button,
input,
select,
textarea {
  font: inherit;
}

.toast-stack {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  left: 12px;
  right: 12px;
  z-index: 60;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.toast {
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
  opacity: 0;
  transform: translateY(-6px);
  animation: toastIn .22s ease forwards;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.toast.success {
  background: linear-gradient(180deg, #15985a 0%, #0f8b50 100%);
}

.toast.error {
  background: linear-gradient(180deg, #d92c37 0%, #bf1f28 100%);
}

.toast.warning {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  color: #1f2937;
}

.toast.info {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
}

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

.app-shell {
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221, 227, 234, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.topbar-user {
  display: grid;
  place-items: center;
}

.top-action {
  white-space: nowrap;
}

.app-main-shell {
  min-height: 0;
  display: grid;
}

.state-card {
  align-self: center;
  justify-self: center;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.loading-splash {
  width: 100%;
  min-height: 100dvh;
  display: grid;
  justify-items: center;
  gap: 14px;
  align-content: center;
  padding: 24px;
  text-align: center;
  background: transparent;
}

.loading-logo {
  width: clamp(180px, 52vw, 260px);
  height: auto;
  object-fit: contain;
}

.loading-bar {
  width: min(220px, 70vw);
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(47, 63, 143, 0.14);
}

.loading-bar i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3851a9, #2f3f8f);
  animation: loadingBarMove 1s linear infinite;
}

@keyframes loadingBarMove {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(250%);
  }
}

.loading-splash p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.auth-shell,
.app-session {
  min-height: 0;
}

.auth-shell {
  display: grid;
  place-items: center;
  padding: 18px;
}

.auth-shell-standalone {
  min-height: 100dvh;
}

.auth-card {
  width: min(100%, 440px);
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 227, 234, 0.95);
  box-shadow: 0 24px 50px rgba(16, 24, 40, 0.12);
}

.auth-logo {
  width: clamp(180px, 52vw, 260px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.auth-card h1 {
  margin: 10px 0 10px;
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
}

.auth-card p {
  margin: 0 0 16px;
  color: var(--muted);
  text-align: center;
}

.auth-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.auth-link {
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

body.is-auth .app-topbar,
body.is-loading .app-topbar,
body.is-auth #bottomNav,
body.is-loading #bottomNav,
body.is-auth #sideNav,
body.is-loading #sideNav,
body.is-auth #appView,
body.is-loading #appView,
body.is-loading #loginView {
  display: none !important;
}

body.is-auth .app-shell,
body.is-loading .app-shell {
  grid-template-rows: 1fr;
}

.app-session {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.side-nav {
  display: none;
}

.screen-shell {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.screen-chrome {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  background: rgba(238, 241, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(221, 227, 234, 0.9);
}

.screen-title-wrap {
  min-width: 0;
}

.screen-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
}

.screen-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.screen-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.screen-outlet {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
  padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
}

[hidden] {
  display: none !important;
}

.screen-stack {
  display: grid;
  gap: 14px;
}

.panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.05);
}

.panel.tight {
  padding: 14px;
}

.panel h2,
.panel h3 {
  margin: 0;
  line-height: 1.15;
}

.panel h2 {
  font-size: 19px;
}

.panel h3 {
  font-size: 16px;
}

.panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.panel-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.panel-head + .panel-head {
  margin-top: 18px;
}

.panel-head-copy {
  min-width: 0;
}

.panel-head-copy p {
  margin-top: 4px;
  font-size: 13px;
}

.summary-grid,
.quick-grid {
  display: grid;
  gap: 12px;
}

.summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  min-height: 94px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #ffd5b8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 243, 232, 0.98) 100%);
}

.metric strong {
  font-size: 26px;
  line-height: 1;
  color: var(--primary-deep);
}

.metric span {
  font-size: 13px;
  font-weight: 700;
  color: #7a3d15;
}

.quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-action {
  display: grid;
  gap: 6px;
  align-content: space-between;
  min-height: 112px;
  text-align: left;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.quick-action strong {
  font-size: 15px;
}

.quick-action span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #556274;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 96px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #ffb27c;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  padding: 11px 14px;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
}

button:disabled {
  cursor: default;
}

button:not(:disabled):active {
  transform: translateY(1px);
}

.primary {
  background: linear-gradient(180deg, #ff7f1f 0%, #ff6a00 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.2);
}

.ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: #364152;
  font-weight: 600;
}

.danger {
  background: linear-gradient(180deg, #d92c37 0%, #bf1f28 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(191, 31, 40, 0.18);
}

.linkish {
  background: transparent;
  color: var(--primary-deep);
  padding: 0;
  min-height: 0;
  font-weight: 700;
}

.btn-loading {
  opacity: .72;
  pointer-events: none;
}

.error,
.info,
.empty-state,
.helper-copy {
  border-radius: 14px;
  padding: 12px 13px;
  font-size: 13px;
}

.error {
  background: #fff0f1;
  color: #9f1c24;
}

.info {
  background: #eaf2ff;
  color: #1d4ed8;
}

.empty-state {
  background: #f8fafc;
  color: var(--muted);
  border: 1px dashed var(--line);
}

.helper-copy {
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--line);
}

.twofactor-qr {
  width: min(220px, 100%);
  height: auto;
  display: block;
  margin: 6px 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.profile-avatar-block {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-avatar-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 28px;
  color: var(--primary-deep);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.15), rgba(255, 106, 0, 0.05));
}

.recovery-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.recovery-list code {
  font-size: 12px;
  font-weight: 700;
}

.field-error {
  min-height: 14px;
  display: block;
  color: var(--danger);
  font-size: 12px;
}

.filters {
  display: grid;
  gap: 10px;
}

.list {
  display: grid;
  gap: 12px;
}

.order-card,
.user-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.order-card h3,
.user-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.stack-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.order-person-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.note-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  border-radius: 50%;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  flex: 0 0 auto;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-fallback {
  font-weight: 800;
  color: var(--primary-deep);
}

.avatar-xs {
  width: 22px;
  height: 22px;
  font-size: 10px;
}

.avatar-sm {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.avatar-lg {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

.order-meta,
.user-meta {
  color: var(--muted);
  font-size: 13px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}

.status-pending {
  background: #f3f4f6;
  color: #4b5563;
}

.status-diagnosis {
  background: #fff1cf;
  color: #8b5b00;
}

.status-repair {
  background: #e1ecff;
  color: #2253c7;
}

.status-ready {
  background: #dbfce8;
  color: #146534;
}

.status-done {
  background: #e5e7eb;
  color: #1f2937;
}

.status-cancel {
  background: #ffe1e3;
  color: #a61b23;
}

.card-actions,
.screen-actions-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.screen-actions-inline > * {
  flex: 1 1 180px;
}

.skeleton-list {
  display: grid;
  gap: 10px;
}

.skeleton-item {
  height: 88px;
  border-radius: 18px;
  background: linear-gradient(90deg, #ecf0f4 0%, #f8fafc 50%, #ecf0f4 100%);
  background-size: 240% 100%;
  animation: pulse 1.1s linear infinite;
}

@keyframes pulse {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

.detail-grid {
  display: grid;
  gap: 12px;
}

.detail-summary {
  display: grid;
  gap: 10px;
}

.detail-line {
  margin: 0;
  color: var(--text);
}

.detail-line strong {
  color: #334155;
}

.actions-grid {
  display: grid;
  gap: 12px;
}

.action-block {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fbfcfd;
}

.danger-block {
  border-color: #ffc6ca;
  background: #fff5f6;
}

.action-block-title {
  font-size: 14px;
  font-weight: 800;
}

.action-row {
  display: grid;
  gap: 10px;
}

.notes-list,
.events-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-item,
.event-item {
  padding: 12px 13px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.note-item.internal {
  border-left: 4px solid #334155;
}

.note-item.client {
  border-left: 4px solid #15985a;
}

.note-item.unread {
  border-left: 4px solid #2563eb;
  background: #eef4ff;
}

.timeline-meta,
.note-meta {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.user-stat-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-stat {
  padding: 12px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.mini-stat strong {
  display: block;
  font-size: 20px;
  color: var(--primary-deep);
}

.mini-stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.split-panel {
  display: grid;
  gap: 14px;
}

.app-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(88px, 1fr);
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(221, 227, 234, 0.9);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-btn {
  min-height: 50px;
  padding: 10px 12px;
  text-align: left;
  display: grid;
  gap: 2px;
  align-content: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: #445164;
}

.nav-btn strong {
  font-size: 12px;
  line-height: 1.1;
}

.nav-btn span {
  font-size: 10px;
  color: var(--muted);
}

.nav-btn.active {
  background: var(--primary-soft);
  border-color: #ffc292;
  color: var(--primary-deep);
}

.nav-btn.active span {
  color: #8a4a21;
}

@media (max-width: 720px) {
  .screen-outlet {
    padding: 12px;
    padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
  }

  .auth-shell {
    padding: 16px;
  }

  .auth-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .top-actions {
    gap: 6px;
  }

  .top-action {
    min-height: 40px;
    padding: 10px 11px;
  }

  .summary-grid,
  .quick-grid,
  .user-stat-grid {
    grid-template-columns: 1fr;
  }

  .filters,
  .form-grid,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .card-actions button,
  .screen-actions-inline button,
  .action-row button {
    width: 100%;
  }

  .screen-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .app-topbar {
    padding: 12px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 16px;
  }

  .screen-title {
    font-size: 22px;
  }

  .panel,
  .order-card,
  .user-card,
  .action-block {
    border-radius: 18px;
  }

  .nav-btn {
    min-height: 54px;
  }
}

@media (min-width: 721px) {
  .summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    align-items: start;
  }
}

@media (min-width: 1000px) {
  .app-main-shell {
    padding: 14px;
    min-height: 0;
  }

  .app-session {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
  }

  .side-nav {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(221, 227, 234, 0.94);
    box-shadow: var(--shadow);
  }

  .screen-shell {
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid rgba(221, 227, 234, 0.6);
  }

  .screen-chrome {
    padding: 18px 20px 16px;
    background: rgba(255, 255, 255, 0.9);
  }

  .screen-outlet {
    padding: 18px 20px 24px;
  }

  .app-bottom-nav {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12161d;
    --bg-soft: #171c24;
    --card: #1b212b;
    --card-alt: #211d19;
    --text: #f5f7fb;
    --muted: #aab4c3;
    --line: #2a3442;
    --line-strong: #364254;
    --primary-soft: rgba(255, 106, 0, 0.18);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    color-scheme: dark;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(255, 106, 0, 0.14), transparent 26%),
      linear-gradient(180deg, #12161d 0%, #171d25 100%);
  }

  .state-card,
  .auth-card,
  .panel,
  .order-card,
  .user-card,
  .note-item,
  .event-item,
  .mini-stat,
  .quick-action,
  .action-block {
    background: rgba(27, 33, 43, 0.96);
    border-color: var(--line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  }

  .loading-bar {
    background: rgba(155, 177, 255, 0.18);
  }

  .metric {
    background: linear-gradient(180deg, rgba(47, 31, 18, 0.88) 0%, rgba(28, 22, 18, 0.96) 100%);
    border-color: rgba(255, 148, 77, 0.18);
  }

  .metric span,
  .mini-stat span,
  .timeline-meta,
  .note-meta,
  .screen-subtitle,
  .panel p,
  .panel-head-copy p,
  .quick-action span,
  .auth-card p,
  .auth-copy,
  label,
  .order-meta,
  .user-meta {
    color: var(--muted);
  }

  input,
  select,
  textarea,
  .ghost,
  .nav-btn,
  .empty-state,
  .helper-copy {
    background: #12161d;
    color: var(--text);
    border-color: var(--line-strong);
  }

  .ghost {
    color: #d7deea;
  }

  .screen-chrome,
  .app-topbar,
  .app-bottom-nav,
  .side-nav {
    background: rgba(20, 24, 31, 0.94);
    border-color: rgba(54, 66, 84, 0.9);
  }

  .screen-shell {
    background: rgba(20, 24, 31, 0.45);
    border-color: rgba(54, 66, 84, 0.5);
  }

  .nav-btn {
    background: #171d25;
    color: #d7deea;
  }

  .nav-btn.active {
    background: rgba(255, 106, 0, 0.16);
    border-color: rgba(255, 148, 77, 0.26);
    color: #ffd3b1;
  }

  .nav-btn.active span {
    color: #f4bc90;
  }

  .status-pending {
    background: #27303d;
    color: #d7deea;
  }

  .status-diagnosis {
    background: #4c3811;
    color: #ffd782;
  }

  .status-repair {
    background: #172f56;
    color: #9dc0ff;
  }

  .status-ready {
    background: #143826;
    color: #a6f4c5;
  }

  .status-done {
    background: #2a3442;
    color: #eef2f8;
  }

  .status-cancel {
    background: #4b1e24;
    color: #ffb7be;
  }

  .note-item.unread {
    background: #1a2842;
    border-left-color: #60a5fa;
  }

  .skeleton-item {
    background: linear-gradient(90deg, #1b212b 0%, #222a35 50%, #1b212b 100%);
    background-size: 240% 100%;
  }
}
