/* Set the base font for the entire site */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Corresponds to Tailwind's bg-slate-50 */
}

/* A subtle background pattern for the hero section */
.hero-pattern {
    background-image: radial-gradient(#dbeafe 2px, transparent 2px); /* blue-100 dots */
    background-size: 30px 30px;
}

/* Custom styles for the loader animation */
.loader {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0; /* slate-200 */
    border-top: 3px solid #0ea5e9; /* sky-500 */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

