/* Custom accordion styles */
.accordion-button {
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    background: #f8f9fa;
    position: relative;
    padding: 1rem;
    font-weight: bold;
}

.accordion-body {
    display: none;
    padding: 1rem;
    background: white;
}

.accordion-collapse.show .accordion-body {
    display: block;
}

/* Hide the checkbox visually but keep it accessible */
.accordion-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

/* Show content when checkbox is checked */
.accordion-checkbox:checked~.accordion-body {
    display: block;
}

/* Style the accordion item */
.accordion-item {
    margin-bottom: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}