
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 147 67% 96%;
    --foreground: 146 50% 15%;
    --card: 0 0% 100%;
    --card-foreground: 146 50% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 146 50% 15%;
    --primary: 146 50% 36%;
    --primary-foreground: 147 67% 96%;
    --secondary: 120 25% 85%;
    --secondary-foreground: 146 50% 15%;
    --muted: 120 25% 90%;
    --muted-foreground: 146 25% 35%;
    --accent: 120 25% 68%;
    --accent-foreground: 146 50% 15%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 146 30% 80%;
    --input: 146 30% 85%;
    --ring: 146 50% 36%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
  .dark {
    --background: 146 25% 10%;
    --foreground: 147 67% 96%;
    --card: 146 25% 12%;
    --card-foreground: 147 67% 96%;
    --popover: 146 25% 10%;
    --popover-foreground: 147 67% 96%;
    --primary: 146 50% 36%;
    --primary-foreground: 147 67% 96%;
    --secondary: 120 15% 20%;
    --secondary-foreground: 147 67% 96%;
    --muted: 120 15% 25%;
    --muted-foreground: 146 25% 75%;
    --accent: 120 25% 68%;
    --accent-foreground: 146 50% 15%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 120 15% 30%;
    --input: 120 15% 30%;
    --ring: 146 50% 36%;
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
    font-feature-settings: "rlig" 1, "calt" 1;
  }
}

@layer utilities {
  .page-break-after {
    page-break-after: always;
  }
  @media print {
    .print\:hidden {
      display: none;
    }
    .print\:block {
        display: block;
    }
    .print\:py-0 {
        padding-top: 0;
        padding-bottom: 0;
    }
  }
  .marquee-container {
    width: 100%;
    overflow: hidden;
  }
  .marquee {
    display: inline-block;
    animation: marquee-rtl 20s linear infinite;
  }
  .marquee-container:hover .marquee {
    animation-play-state: paused;
  }
  @keyframes marquee-rtl {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}
