@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: Arial, Helvetica, sans-serif;
}

@layer base {
  :root {
    --background: 0 0% 98%;
    --foreground: 224 71.4% 4.1%;
    --card: 0 0% 100%;
    --card-foreground: 224 71.4% 4.1%;
    --popover: 0 0% 100%;
    --popover-foreground: 224 71.4% 4.1%;
    --primary: 0 84.2% 60.2%;
    --primary-foreground: 0 0% 100%;
    --secondary: 35 100% 50%;
    --secondary-foreground: 220 14.3% 34.1%;
    --muted: 220 13% 91%;
    --muted-foreground: 220 8.9% 46.1%;
    --accent: 231 48% 77%;
    --accent-foreground: 224 71.4% 4.1%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 262 84% 58%;
    --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;
  }
  .dark {
    --background: 233 30% 12%;
    --foreground: 210 20% 98%;
    --card: 233 30% 16%;
    --card-foreground: 210 20% 98%;
    --popover: 233 30% 12%;
    --popover-foreground: 210 20% 98%;
    --primary: 0 84.2% 60.2%;
    --primary-foreground: 0 0% 100%;
    --secondary: 35 100% 50%;
    --secondary-foreground: 210 20% 98%;
    --muted: 220 14.3% 34.1%;
    --muted-foreground: 220 8.9% 64.9%;
    --accent: 220 14.3% 34.1%;
    --accent-foreground: 210 20% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 220 14.3% 34.1%;
    --input: 220 14.3% 34.1%;
    --ring: 262 84% 58%;
    --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%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}

@layer components {
    .coupon-card {
        background-image: repeating-linear-gradient(-45deg, hsl(var(--primary)/0.1), hsl(var(--primary)/0.1) 5px, transparent 5px, transparent 10px);
        border-style: dashed;
    }

    .custom-sheet-content {
        padding: 1.5rem;
    }
}
