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


.action-button{
    @apply hover:bg-gray-200
}
@layer components {
    .focus {
        @apply border border-black;
    }
    .rotate-y-180 {
        transform: rotateY(180deg);
    }
}