#cookiesButton {
    position: fixed; /* Fixed/sticky position */
    bottom: 2px; /* Place the button at the bottom of the page */
    left: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    z-index: 50;
    border-radius: 40px;
    font-size: 1rem;
}

#topButton {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 2px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 50; /* Make sure it does not overlap */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    border-radius: 40px;
    font-size: 1rem;
}
#topButton:hover {
    background-color: #555 !important; /* Add a dark-grey background on hover */
}
