/* Style for the overall FAQ set container */
.faqo-faq-set {
    margin: 20px 0; /* Vertical margin for spacing around the FAQ set */
}

/* Style for each individual question in the FAQ */
.faqo-faq-question {
    background-color: #f2f2f2; /* Light grey background for questions */
    padding: 10px; /* Padding inside question elements for spacing */
    margin: 5px 0; /* Vertical margin for spacing between questions */
    cursor: pointer; /* Changes cursor to indicate the question is clickable */
    font-weight: bold; /* Makes the question text bold for emphasis */
}

/* Style for the answer associated with each question */
.faqo-faq-answer {
    display: none; /* Initially hides the answer */
    padding: 10px; /* Padding inside answer elements for spacing */
    margin: 5px 0; /* Vertical margin for spacing between answers */
    background-color: #fff; /* White background for answers */
    border: 1px solid #ddd; /* Subtle border around answers */
}

/* Additional styles can be added here for the open state of an answer */
.faqo-faq-answer.faqo-open {
    /* For example, different background color, borders, etc. */
}

/* The "+" or "-" indicator before each question */
.faqo-faq-question .faqo-indicator::before {
    content: '['; /* Adds an opening bracket before the indicator */
    margin-right: 2px; /* Right margin for spacing after the bracket */
}

.faqo-faq-question .faqo-indicator::after {
    content: ']'; /* Adds a closing bracket after the indicator */
    margin-left: 2px; /* Left margin for spacing before the bracket */
}

.faqo-faq-question .faqo-indicator {
    color: #777; /* Color for the indicator, a medium grey */
    margin-right: 5px; /* Right margin for spacing between indicator and question text */
}
