/* This file contains custom CSS that isn't covered by Tailwind's utility classes. */

/* Applying custom fonts to the body and headers */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Simple spinner for loading states */
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #FF6B35; /* Brand Orange */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
