Tre Bukken
.collapsible { cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 16px; transition: 0.4s; background-color: #dddbca; /* Solid background for button */ color: black; /* Text color for button */ font-weight: normal; /* Corrected to normal */ font-family: 'ITC Benguiat Light'; } .active, .collapsible:hover { background-color: #d5c4a1; /* Slightly different background color on hover and active */ } .collapsible:after { content: '\002B'; /* Plus sign for collapsed state */ color: black; /* Changed to black for better visibility */ float: right; margin-left: 5px; } .active:after { content: "\2212"; /* Minus sign for expanded state */ } .content {