/* Custom base styles */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Global styles */
body {
    animation: fadeIn 0.5s ease-out;
}

/* Custom component styles */
.color-palette {
    transition: all 0.3s ease;
}

.color-palette:hover {
    transform: translateY(-5px);
}