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

input, select, textarea {
    @apply transition duration-200;
}

input:focus, select:focus, textarea:focus {
    @apply ring-2 ring-blue-600;
}

button {
    @apply transition duration-200;
}

table {
    @apply border-collapse;
}

th, td {
    @apply border border-gray-300;
}

header {
    @apply shadow;
}

nav ul li a {
    @apply transition duration-200;
}

nav ul li a:hover {
    @apply text-blue-200;
}