/* assets/css/style.css */
/* You can add custom styles here if needed, to complement Tailwind CSS. */
/* For example, if you want to override something or add styles not easily achievable with utility classes. */

/* Ensure Inter font is loaded if not using a CDN that includes it with Tailwind config */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Example: Custom button style not easily done with pure Tailwind */
/* .my-custom-button {
    @apply py-2 px-4 bg-purple-600 text-white font-semibold rounded-lg shadow-md;
    @apply hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:ring-opacity-75;
    transition: background-color 0.3s ease;
} */

/* Ensure FontAwesome icons are sized correctly if used without explicit sizing */
.fas {
    /* vertical-align: middle; */ /* Adjust if icons are misaligned */
}
