/*
Theme Name: Neve Bearing Witness
Theme URI: https://themeisle.com/themes/neve/
Description: Child theme for Bearing Witness custom code and styles.
Author: Project Team
Template: neve
Version: 1.0.0
Text Domain: neve-bearing-witness
*/

.collapsible {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    cursor: pointer; /* Pointer cursor */
    padding: 10px 20px; /* Padding inside the button */
    border: none; /* Remove borders */
    text-align: left; /* Align text to the left */
    outline: none; /* Remove focus outline */
    font-size: 16px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.collapsible:hover {
    background-color: #45a049; /* Darker green on hover */
}

.collapsible.active {
    background-color: #2e7d32; /* Even darker green for active state */
}
