/* Custom styles - Tailwind CSS handles most styling via utility classes */

/* Reset box-sizing for consistency */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Text selection color */
::selection {
    background-color: #fef3c7;
    color: #000000;
}

/* Text selection color for Firefox */
::-moz-selection {
    background-color: #fef3c7;
    color: #000000;
}
