/* [project]/app/globals.css [app-client] (css) */
@tailwind base;

@tailwind components;

@tailwind utilities;

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.6%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.6%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.6%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --accent: 0 0% 9.0%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --primary: 0 0% 9.0%;
    --primary-foreground: 0 0% 100%;
    --ring: 0 0% 3.6%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9.0%;
  }

  .dark {
    --background: 0 0% 3.6%;
    --foreground: 0 0% 98.2%;
    --card: 0 0% 3.6%;
    --card-foreground: 0 0% 98.2%;
    --popover: 0 0% 3.6%;
    --popover-foreground: 0 0% 98.2%;
    --muted: 0 0% 14.9%;
    --muted-foreground: 0 0% 63.9%;
    --accent: 0 0% 98.2%;
    --accent-foreground: 0 0% 9.0%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 9.0%;
    --border: 0 0% 14.9%;
    --input: 0 0% 14.9%;
    --primary: 0 0% 98.2%;
    --primary-foreground: 0 0% 9.0%;
    --ring: 0 0% 83.1%;
    --secondary: 0 0% 14.9%;
    --secondary-foreground: 0 0% 98.2%;
  }

  @apply border-border;

  @apply bg-background text-foreground;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/