/* Custom styles for the application */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Style for disabled buttons */
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Add a subtle transition to all buttons */
button {
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

