/* Custom styles for Boyne Valley Farmers Co-Op website with Tailwind CSS */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Custom styling for details/summary elements in FAQs */
details summary::-webkit-details-marker {
    display: none;
}

details[open] summary span:first-child::before {
    content: '▾';
}

details:not([open]) summary span:first-child::before {
    content: '▸';
}

/* Print styles */
@media print {
    header,
    footer,
    button {
        display: none !important;
    }
}
