/* Frontend styles for the Lightweight Accordion */
.lightweight-accordion {
    margin: 1em 0;
    /* Add additional styles as needed */
}

.lightweight-accordion details {
    border: 1px solid #ddd;
    padding: 0.5em;
    border-radius: 4px;
}

.lightweight-accordion summary {
    cursor: pointer;
    font-weight: bold;
    padding: 0.5em;
}

.lightweight-accordion.bordered {
    border: 2px solid #333;
}

/* Editor-specific styles (optional) */
.lightweight-accordion-editor {
    border: 1px dashed #ccc;
    padding: 1em;
}

/* Hide the marker in WebKit browsers (Chrome, Safari) */
summary::-webkit-details-marker {
    display: none;
}
/* Hide the marker in Firefox */
summary::marker {
    display: none;
}


details > summary:first-of-type {
    list-style: disclosure-closed !important;
    margin-left: 2em;
}

details[open] > summary:first-of-type {
    list-style-type: disclosure-open !important;
	margin-left: 2em;
}

.lightweight-accordion summary {
    border: 0 !important;
    outline: 0 !important;
}