/* Custom tailwind utilities or animations can go here */
@tailwind base;
@tailwind components;
@tailwind utilities;

.loader {
    border-top-color: #38b2ac;
    -webkit-animation: spinner 1.5s linear infinite;
    animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
