@tailwind base;
@tailwind components;
@tailwind utilities;

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #4ade80;
    border-radius: 50%;
    animation: spinScale 2s linear infinite;
}

@keyframes spinScale {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}
