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

pre code {
    @apply text-base;
}

@layer base {
    h1 {
        @apply text-5xl;
    }
}

@layer components {
    .btn {
        @apply text-nowrap py-2 px-5 bg-gray-500 text-white font-semibold rounded-full shadow-md hover:bg-indigo-600;
    }
    .btn-primary {
        @apply btn bg-gradient-to-r from-indigo-500 to-indigo-600;
    }

    .input-label {
        @apply block;
    }
    .input-label-text {
        @apply input-label h-8;
    }
    .input-text {
        @apply bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500;
    }

    .debug {
        @apply border border-red-950;
    }

    .force {
        @apply mx-2 mr-2;
    }
}

.pixelated {
    image-rendering: pixelated;
}