/* Custom styles in aggiunta a Tailwind via CDN */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::before {
    content: "▶";
    display: inline-block;
    margin-right: 0.5rem;
    transition: transform 0.2s;
}
details[open] > summary::before {
    transform: rotate(90deg);
}
