/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    /*padding: 0px;*/
    width: 100%;
    border: none;
    border-right: 2px solid rgb(255,255,255) transparent;
    text-align: left;
    outline: none;
    /*font-size: 15px;*/
}

/* 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, .collapsible:hover {
    background-color: #dddd;
    border-right: 2px solid rgb(195,195,185);
    /*color: rgb(0,0,0);*/
}
