/* Style the buttons that are used to open and close the accordion panel */
.accordion-custom {
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 18px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    box-sizing: border-box;
    width: 100%;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion-custom:hover {
    background-color: #ffd43b;
    color: black; !important;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    display: none;
    overflow: hidden;
} 