@import "tailwindcss";

/* Add button click styling */
button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease-in-out;
}

/* Add button click styling for dark mode */
.dark button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease-in-out;
}