/* static/accordion.css */

/* 
    General accordion style
    for expanding/collapsing content.
*/

.accordion {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #f2f2f2;
    margin-bottom: 5px;
    border: 1px solid #ddd;
}

/* Hide the checkbox inputs */
.accordion input {
    display: none;
}

/* Styling for the question labels */
.accordion-header {
    padding: 10px;
    font-size: 16px;
    background-color: #e9e9e9;
    cursor: pointer;
    display: block;
}

/* Hide the answer content initially */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 10px;
}

/* When the checkbox is checked, show the content */
.accordion input:checked ~ .accordion-content {
    max-height: 400px; /* Adjust as needed for content */
}
