@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --brand: #53377c;
  --brand-dark: #3a2656;
  --brand-light: #7a5aa8;
}

body.admin-ui {
  background-color: #0f0f0f;
  color: #fff;
  font-family: Montserrat, system-ui, sans-serif;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-bg {
  background-image: linear-gradient(rgba(83, 55, 124, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 55, 124, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #53377c;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #7a5aa8;
}

@media print {
  .no-print {
    display: none !important;
  }
}
