/* styles.css */
body {
    font-family: 'Arial', sans-serif; /* Match the font style of your website */
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Fixed width, can be adjusted */
    max-width: 600px; /* Max width for larger screens */
    background-color: #f1d871; /* Navy blue background */
    color: #4f4f70; /* White text */
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Slight shadow for visibility */
    text-align: center;
    z-index: 1000;
    border-radius: 10px; /* Rounded corners */
    display: none; /* Initially hidden */
}

.cookie-options {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 10px;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 5px;
}

button {
    background-color: #f1d871; /* Red background for the button */
    color: #4f4f70; /* White text */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background-color: #cc0000; /* Darker red on hover */
}
