/* Additional custom CSS rules (Tailwind handles most styling) */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add a subtle animation to the button */
#alertBtn {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* Improve scrollbar styling for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f0fdf4; 
}
::-webkit-scrollbar-thumb {
    background: #4ade80; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #166534; 
}
