<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@tailwind base;
@tailwind components;
@tailwind utilities;


@layer base{

    @layer base {
        :root {
            --background: 0 0% 100%;
            --foreground: 240 10% 3.9%;

            --card: 0 0% 100%;
            --card-foreground: 240 10% 3.9%;

            --popover: 0 0% 100%;
            --popover-foreground: 240 10% 3.9%;

            --primary: 240 5.9% 10%;
            --primary-foreground: 0 0% 98%;

            --secondary: 240 4.8% 95.9%;
            --secondary-foreground: 240 5.9% 10%;

            --muted: 240 4.8% 95.9%;
            --muted-foreground: 240 3.8% 46.1%;

            --accent: 240 4.8% 95.9%;
            --accent-foreground: 240 5.9% 10%;

            --destructive: 0 84.2% 60.2%;
            --destructive-foreground: 0 0% 98%;

            --border:240 5.9% 90%;
            --input:240 5.9% 90%;
            --ring:240 5.9% 10%;
            --radius: 0.5rem;
        }

        .dark {
            --background:240 10% 3.9%;
            --foreground:0 0% 98%;

            --card:240 10% 3.9%;
            --card-foreground:0 0% 98%;

            --popover:240 10% 3.9%;
            --popover-foreground:0 0% 98%;

            --primary:0 0% 98%;
            --primary-foreground:240 5.9% 10%;

            --secondary:240 3.7% 15.9%;
            --secondary-foreground:0 0% 98%;

            --muted:240 3.7% 15.9%;
            --muted-foreground:240 5% 64.9%;

            --accent:240 3.7% 15.9%;
            --accent-foreground:0 0% 98%;

            --destructive:0 62.8% 30.6%;
            --destructive-foreground:0 0% 98%;

            --border:240 3.7% 15.9%;
            --input:240 3.7% 15.9%;
            --ring:240 4.9% 83.9%;
        }
    }

}


#app{
    @apply h-full;
}

@layer components{
    .btn{
        @apply flex justify-center items-center rounded-md shadow-sm disabled:cursor-not-allowed disabled:bg-gray-300 disabled:border-gray-200 disabled:text-gray-500 px-3 py-2 sm:text-sm;
    }

    .btn.btn-primary{
        @apply border border-transparent bg-indigo-600 text-white hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2;
    }

    .btn.btn-secondary{
        @apply border border-gray-300 bg-gray-100 hover:bg-white font-semibold text-gray-700 hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:ring focus:ring-blue-200 active:text-gray-800 active:bg-gray-50;
    }

    .btn.btn-secondary.disabled{
        @apply cursor-not-allowed bg-gray-100 border-gray-200 text-gray-400 hover:!bg-gray-100;
    }

    .btn.btn-danger{
        @apply border border-red-600 bg-red-600 hover:bg-red-600 text-white font-semibold hover:text-white focus:outline-none focus:border-blue-300 focus:ring focus:ring-blue-200 active:text-gray-800 active:bg-gray-50;
    }
}
</pre></body></html>