<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#cookiePopup {
position: fixed;
z-index: 100;
bottom: 0;
left: 0;
width: 100%;
background-color: #0a2240;
text-align: center;
padding: 20px;
display: flex; /* Added for Flexbox layout */
justify-content: space-between; /* Distribute space between content and button */
align-items: center; /* Vertically align items in the center */
}
.popup-content, .popup-button {
margin: 0 10px; /* Margin for spacing */
}
#cookiePopup button {
background-color: #004b98;
color: white; /* White text */
padding: 15px 32px; /* Top and bottom padding of 15px, left and right padding of 32px */
text-align: center; /* Centered text */
text-decoration: none; /* No underline */
display: inline-block; /* Inline block level element */
font-size: 16px; /* Font size */
margin: 4px 2px; /* Margin around the button */
cursor: pointer; /* Cursor changes to a pointer when hovered over */
border: none; /* No border */
border-radius: 5px; /* Rounded corners */
transition-duration: 0.4s; /* Smooth transition for hover effect */
}

#cookiePopup button:hover {
background-color: #3db5e6; /* Darker shade of green when hovered over */
}</pre></body></html>