:root {
  --background: 210 40% 98%;
  --foreground: 222 47% 11%;
  --primary: 160 84% 39%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96%;
  --muted: 210 40% 96%;
  --destructive: 0 84% 60%;
  --border: 214 32% 91%;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
  font-family: 'Inter', sans-serif;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media print {
  @page {
    size: A4 landscape;
    margin: 10mm;
  }
  body {
    background: white;
  }
  .print-hidden {
    display: none !important;
  }
  main {
    padding: 0 !important;
    margin: 0 !important;
  }
  .shadow-2xl {
    box-shadow: none !important;
  }
  .border-slate-300 {
    border: none !important;
  }
}