/* Custom styles to supplement Tailwind */

/* Apply custom fonts to Tailwind's base */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Style for native date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Ensure sticky header doesn't jump */
header.sticky {
    position: -webkit-sticky;
    position: sticky;
}
