.network-banner {
  position: fixed;
  z-index: 2200;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 48px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--white);
  background: var(--danger);
  box-shadow: 0 8px 30px rgba(142, 29, 43, .25);
  text-align: center;
  font-size: 12px;
}

.network-banner strong {
  padding: var(--space-1) var(--space-2);
  border-radius: 6px;
  color: var(--danger);
  background: var(--white);
  letter-spacing: .08em;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(229, 27, 35, .17);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 10px var(--space-4);
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: -.005em;
  line-height: 1;
  transition: transform var(--motion-fast) ease, opacity var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 24, 18, .12);
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:disabled {
  opacity: .46;
  transform: none;
  box-shadow: none;
}

.button.full {
  width: 100%;
  min-height: 48px;
}

.button.compact {
  min-height: 36px;
  padding: var(--space-2) var(--space-3);
  font-size: 11px;
}

.button.primary {
  color: var(--white);
  border-color: var(--brand);
  background: linear-gradient(180deg, #e82930, var(--brand));
  box-shadow: 0 7px 18px rgba(169, 14, 21, .16);
}

.button.secondary {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
}

.button.success {
  color: var(--white);
  border-color: var(--success);
  background: var(--success);
}

.button.success-outline {
  color: var(--success);
  border-color: rgba(22, 115, 71, .25);
  background: var(--success-soft);
}

.button.warning {
  color: var(--warning);
  border-color: rgba(138, 98, 0, .24);
  background: var(--warning-soft);
}

.button.danger {
  color: var(--white);
  border-color: var(--danger);
  background: var(--danger);
}

.button.danger-outline {
  color: var(--danger);
  border-color: rgba(142, 29, 43, .28);
  background: var(--danger-soft);
}

.button.subtle {
  color: var(--ink-800);
  border-color: var(--ink-200);
  background: var(--surface-raised);
}

.notice {
  padding: var(--space-3) var(--space-4);
  border-left: 4px solid;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.55;
}

.notice.warning {
  color: var(--warning);
  border-color: var(--warning);
  background: var(--warning-soft);
}

.notice.error {
  color: var(--danger);
  border-color: var(--danger);
  background: var(--danger-soft);
}

.environment-badge {
  display: inline-flex;
  padding: 5px var(--space-2);
  border: 1px solid rgba(138, 98, 0, .19);
  border-radius: 6px;
  color: var(--warning);
  background: var(--warning-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.environment-badge.production {
  color: var(--success);
  border-color: rgba(22, 115, 71, .2);
  background: var(--success-soft);
}

.sync-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  white-space: nowrap;
}

.sync-dot,
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42cf7e;
  box-shadow: 0 0 0 4px rgba(66, 207, 126, .1);
}

.sync-dot.syncing {
  background: #f8b340;
  animation: pulse 1s ease-in-out infinite;
}

.sync-dot.error {
  background: #ff626a;
}

.operator-menu-wrap {
  position: relative;
}

.operator-button {
  display: flex;
  min-height: 44px;
  padding: 6px 12px 6px 6px;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid rgba(255, 254, 250, .19);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 254, 250, .075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  text-align: left;
}

.operator-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--role-accent);
  font-size: 10px;
  font-weight: 900;
}

.operator-text {
  display: grid;
  gap: 2px;
}

.operator-text strong {
  max-width: 150px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.operator-text small {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
}

.chevron {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

.operator-menu {
  position: absolute;
  z-index: 500;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: 220px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--ink-150);
  border-radius: 14px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-md);
}

.menu-item {
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--ink-800);
  background: transparent;
  text-align: left;
  font-size: 12px;
  font-weight: 750;
}

.menu-item:hover {
  color: var(--ink-950);
  background: var(--surface-strong);
}

.menu-item.danger-text {
  color: var(--danger);
}

.search-row {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: var(--space-2);
}

.search-box {
  position: relative;
  min-width: 0;
  flex: 1;
}

.search-box input {
  height: 56px;
  margin: 0;
  padding: 10px 88px 10px 46px;
  border: 1px solid var(--ink-300);
  border-radius: 12px;
  background: var(--surface-raised);
  font-size: 15px;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 3px 10px rgba(28, 24, 18, .04);
}

.search-box input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(220, 24, 32, .1), 0 5px 14px rgba(28, 24, 18, .06);
}

.search-box input:focus-visible {
  outline: none;
}

.search-box input::placeholder {
  color: var(--ink-500);
  font-weight: 500;
}

.search-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 17px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--ink-700);
  border-radius: 50%;
  transform: translateY(-56%);
}

.search-icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink-700);
  content: "";
  transform: rotate(45deg);
}

.search-box kbd {
  position: absolute;
  top: 50%;
  right: 14px;
  padding: 3px 7px;
  border: 1px solid var(--ink-200);
  border-radius: 5px;
  color: var(--ink-500);
  background: var(--ink-100);
  font-size: 10px;
  transform: translateY(-50%);
}

.clear-search {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 44px;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: var(--ink-500);
  background: var(--ink-100);
  font-size: 18px;
  transform: translateY(-50%);
}

.walkin-button {
  color: var(--white);
  border-color: var(--walkin);
  background: linear-gradient(180deg, #a66148, var(--walkin));
  box-shadow: 0 7px 16px rgba(108, 56, 40, .17);
}

.filter-bar {
  display: flex;
  min-width: 0;
  padding: var(--space-2) 0;
  flex: 1;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.filter-command-row {
  display: flex;
  min-width: 0;
  padding: 0;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filter-toggle {
  display: inline-flex;
  min-width: 84px;
  min-height: 38px;
  padding: 7px 9px 7px 12px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink-700);
  background: var(--surface-muted);
  font-size: 11px;
  font-weight: 850;
  transition: border-color var(--motion-fast) ease, background var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.filter-toggle::after {
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--motion-fast) ease;
}

.filter-toggle[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

.filter-toggle:hover,
.filter-toggle[aria-expanded="true"] {
  color: var(--brand-dark);
  border-color: rgba(220, 24, 32, .38);
  background: var(--brand-soft);
  box-shadow: var(--shadow-xs);
}

.filter-toggle span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 5px;
  color: var(--ink-600);
  background: var(--ink-150);
  font-size: 10px;
  font-weight: 900;
}

.filter-toggle.has-active {
  color: var(--brand-dark);
  border-color: var(--brand);
  background: var(--brand-soft);
}

.filter-toggle.has-active span {
  color: var(--white);
  background: var(--brand);
}

.filter-chip {
  display: inline-flex;
  min-height: 38px;
  padding: 7px 8px 7px 11px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink-600);
  background: var(--surface-raised);
  font-size: 11px;
  font-weight: 800;
}

.filter-count {
  display: inline-grid;
  min-width: 23px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 5px;
  color: var(--ink-600);
  background: var(--ink-100);
  font-size: 10px;
  font-weight: 900;
}

.filter-chip.active {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 6px 15px rgba(169, 14, 21, .16);
}

.filter-chip.active .filter-count {
  color: var(--brand-dark);
  background: var(--white);
}

.advanced-filters {
  display: grid;
  padding: 13px 0 15px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: var(--space-2);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(247, 243, 235, .72), transparent);
}

.filter-reset {
  min-height: 40px;
  margin-top: 15px;
  padding: 8px 12px;
  align-self: end;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  color: var(--ink-700);
  background: var(--surface-raised);
  font-size: 11px;
  font-weight: 850;
}

.filter-reset:hover {
  color: var(--ink-950);
  border-color: var(--ink-500);
  background: var(--surface-muted);
}

.compact-field {
  min-width: 0;
  margin: 0;
}

.compact-field > span {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.compact-field select {
  min-height: 38px;
  margin: 0;
  padding: 7px 28px 7px 9px;
  border-color: var(--ink-200);
  font-size: 11px;
}

.list-heading {
  display: flex;
  padding: 16px 18px 10px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.list-heading h2,
.modal-card h2 {
  margin: 0;
  color: var(--ink-950);
  letter-spacing: -.025em;
}

.list-heading h2 {
  font-size: 20px;
  line-height: 1.1;
}

.count-badge {
  display: inline-flex;
  min-height: 26px;
  padding: 5px 9px;
  align-items: center;
  border: 1px solid var(--ink-150);
  border-radius: 999px;
  color: var(--ink-600);
  background: var(--ink-100);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.guest-list {
  display: grid;
  padding: 0 14px 16px;
  align-content: start;
  gap: 7px;
}

.guest-card {
  position: relative;
  min-height: 68px;
  overflow: hidden;
  border: 1px solid var(--ink-150);
  border-radius: 12px;
  background: var(--surface-raised);
  box-shadow: 0 2px 7px rgba(28, 24, 18, .035);
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.guest-card::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--ink-200);
  content: "";
}

.guest-card:hover {
  border-color: var(--ink-300);
  box-shadow: 0 8px 18px rgba(28, 24, 18, .08);
  transform: translateY(-2px);
}

.guest-card.vvip::before {
  background: var(--brand);
}

.guest-card.vip::before {
  background: var(--vip-gold);
}

.guest-card.present:not(.vvip):not(.vip)::before {
  background: var(--success);
}

.guest-card.issue {
  border-color: rgba(138, 98, 0, .28);
}

.guest-card.issue::before {
  background: var(--warning);
}

.guest-card.selected {
  border-color: var(--role-accent);
  background: var(--role-soft);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--role-accent) 12%, transparent), 0 8px 18px rgba(28, 24, 18, .07);
}

.guest-row__open {
  display: grid;
  width: 100%;
  min-height: 66px;
  padding: 8px 14px 8px 18px;
  grid-template-columns: minmax(0, 1fr) minmax(128px, auto);
  align-items: center;
  gap: var(--space-3);
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.guest-card-main {
  min-width: 0;
}

.guest-name {
  margin: 0 0 2px;
  overflow: hidden;
  color: var(--ink-950);
  font-size: 15.5px;
  line-height: 1.18;
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guest-institution {
  margin: 0 0 var(--space-1);
  overflow: hidden;
  color: var(--ink-600);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guest-meta {
  display: flex;
  overflow: hidden;
  gap: var(--space-2);
  color: var(--ink-500);
  font-size: 10px;
  white-space: nowrap;
}

.guest-meta span + span::before {
  margin-right: var(--space-2);
  color: var(--ink-300);
  content: "·";
}

.guest-row-status {
  min-width: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-1);
}

.guest-modal-heading .badge-row {
  margin-bottom: var(--space-2);
  justify-content: flex-start;
}

.tag {
  display: inline-flex;
  min-height: 23px;
  padding: 4px 8px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink-600);
  background: var(--ink-100);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag.vvip {
  color: var(--white);
  background: var(--brand);
  box-shadow: inset 0 -2px 0 var(--brand-dark);
}

.tag.vip {
  color: var(--white);
  background: var(--ink-950);
  box-shadow: inset 0 -2px 0 var(--vip-gold);
}

.tag.present,
.tag.kit-ok,
.tag.badge-ok {
  color: var(--success);
  background: var(--success-soft);
}

.tag.issue,
.tag.review,
.tag.equipment-pending {
  color: var(--warning);
  background: var(--warning-soft);
}

.tag.walkin {
  color: var(--white);
  background: var(--walkin);
  box-shadow: inset 0 -2px 0 var(--walkin-dark);
}

.empty-state {
  grid-row: 3;
  padding: 56px var(--space-5);
  color: var(--ink-600);
  text-align: center;
}

.empty-state h3 {
  margin: var(--space-3) 0 var(--space-2);
  color: var(--ink-950);
}

.empty-state p {
  max-width: 430px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.6;
}

.empty-icon,
.placeholder-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin: auto;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 24px rgba(169, 14, 21, .2);
  font-size: 18px;
  font-weight: 900;
}

.guest-modal-heading h2 {
  margin: 0;
  padding-right: var(--space-6);
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.modal-subtitle {
  margin: 7px 0 18px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.guest-detail-grid {
  display: grid;
  margin: 18px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.detail-item {
  min-width: 0;
  min-height: 66px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(247, 243, 235, .82);
  box-shadow: inset 3px 0 0 var(--ink-200);
}

.detail-item.wide {
  grid-column: 1 / -1;
}

.detail-item span,
.info-panel span,
.notes-panel span {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--text-muted);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.detail-item strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.45;
}

.info-panel,
.notes-panel {
  margin: var(--space-3) 0;
  padding: 14px;
  border-left: 4px solid var(--success);
  border-radius: 11px;
  background: var(--success-soft);
  font-size: 12px;
  line-height: 1.55;
}

.notes-panel {
  border-left-color: var(--vip-gold);
  background: var(--vip-soft);
}

.notes-panel p {
  margin: 0;
  white-space: pre-wrap;
}

.guest-actions {
  display: grid;
  margin-top: var(--space-4);
  gap: 12px;
}

.action-section,
.more-actions {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-raised);
}

.primary-actions {
  border-color: rgba(220, 24, 32, .22);
  background: var(--brand-soft);
  box-shadow: inset 4px 0 0 var(--brand);
}

.action-label {
  margin: 0 0 var(--space-2);
  color: var(--ink-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.button.finish-button {
  color: var(--white);
  border-color: #3b3b38;
  background: #3b3b38;
}

.more-actions summary {
  display: grid;
  min-height: 42px;
  padding: 2px 34px 2px 0;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.more-actions summary::-webkit-details-marker {
  display: none;
}

.more-actions summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-500);
  border-bottom: 2px solid var(--ink-500);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--motion-fast) ease;
}

.more-actions[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.more-actions summary span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.more-actions summary small {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.more-actions[open] summary {
  margin-bottom: var(--space-3);
  border-bottom: 1px solid var(--ink-150);
}

.modal {
  position: fixed;
  z-index: 1900;
  inset: 0;
  display: flex;
  padding: var(--space-5);
  align-items: center;
  justify-content: center;
}

.modal-backdrop,
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 7, .68);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(88dvh, 820px);
  overflow-y: auto;
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, .22);
  border-top: 6px solid var(--brand);
  border-radius: 20px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-md);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: var(--space-3);
  right: var(--space-3);
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink-700);
  border: 1px solid var(--ink-150);
  background: var(--surface-raised);
  box-shadow: var(--shadow-xs);
  font-size: 22px;
}

.modal-card h2 {
  padding-right: var(--space-7);
  font-size: 24px;
}

.modal-actions {
  display: flex;
  margin-top: var(--space-4);
  justify-content: flex-end;
  gap: var(--space-2);
}

.checkbox-row {
  display: flex;
  margin-bottom: var(--space-4);
  align-items: flex-start;
  gap: var(--space-2);
}

.checkbox-row input {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

.checkbox-row label {
  margin: 1px 0 0;
}

.loading-overlay {
  position: fixed;
  z-index: 2400;
  inset: 0;
  display: grid;
  padding: var(--space-5);
  place-items: center;
  background: rgba(5, 5, 5, .66);
  backdrop-filter: blur(4px);
}

.loading-card {
  display: flex;
  min-width: 280px;
  padding: var(--space-5);
  align-items: center;
  gap: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.loading-card strong,
.loading-card small {
  display: block;
}

.loading-card small {
  margin-top: var(--space-1);
  color: var(--text-muted);
  font-size: 10px;
}

.action-flash {
  position: fixed;
  z-index: 2300;
  top: var(--space-4);
  left: 50%;
  display: flex;
  width: min(440px, calc(100vw - 24px));
  padding: var(--space-3) var(--space-4);
  align-items: center;
  gap: var(--space-3);
  border: 1px solid rgba(22, 115, 71, .22);
  border-radius: var(--radius-md);
  color: var(--success);
  background: var(--success-soft);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.action-flash.warning {
  color: var(--warning);
  border-color: rgba(138, 98, 0, .22);
  background: var(--warning-soft);
}

.flash-icon {
  font-size: 22px;
  font-weight: 900;
}

.action-flash p {
  margin: 2px 0 0;
  font-size: 11px;
}

.toast-container {
  position: fixed;
  z-index: 2500;
  right: var(--space-4);
  bottom: var(--space-4);
  display: grid;
  width: min(380px, calc(100vw - 24px));
  gap: var(--space-2);
}

.toast {
  padding: var(--space-3) var(--space-4);
  border-left: 4px solid var(--success);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  line-height: 1.45;
}

.toast.warning {
  border-left-color: var(--warning);
}

.toast.error {
  border-left-color: var(--danger);
}

.side-empty {
  padding: var(--space-4) 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 11px;
}
