@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html, body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.toast-enter {
  transform: translateY(8px);
  opacity: 0;
}

.toast-enter-active {
  transform: translateY(0);
  opacity: 1;
  transition: all 180ms ease;
}

.toast-exit-active {
  transform: translateY(8px);
  opacity: 0;
  transition: all 180ms ease;
}

.cm-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(226 232 240);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
}

#sidebar {
  transition: width 180ms ease;
}

body[data-sidebar="collapsed"] #sidebar {
  width: 84px;
}

body[data-sidebar="collapsed"] #sidebar .sidebar-brand-text,
body[data-sidebar="collapsed"] #sidebar .sidebar-label,
body[data-sidebar="collapsed"] #sidebar .sidebar-footer-text {
  display: none;
}

body[data-sidebar="collapsed"] #sidebar .sidebar-link {
  justify-content: center;
  gap: 0;
  padding-left: 12px;
  padding-right: 12px;
}

body[data-sidebar="collapsed"] #sidebar .sidebar-footer-actions {
  justify-content: center;
}

#filtersDialog:not([open]) {
  display: none;
}

#filtersDialog[open] {
  display: block;
  position: fixed;
  inset: 1rem;
  margin: auto;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  z-index: 999;
}
