#cookieBanner {
    position: fixed;  /* Ensures the banner is always at the bottom of the viewport */
    bottom: 0;        /* Aligns the banner to the bottom edge of the viewport */
    left: 0;          /* Aligns the banner to the left edge of the viewport */
    width: 100%;      /* Makes the banner span the entire width of the screen */
    background-color: #f4f4f4;
    padding: 20px;
    border-top: 1px solid #ccc;
    z-index: 99999;   /* Increases z-index to ensure it stays on top of all other elements */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);  /* Adds a subtle shadow to make it more distinct */
}

#cookieSettingsModal {
    display: none;    /* Initially hidden */
    position: fixed;  /* Positions the modal relative to the viewport */
    top: 50%;         /* Centers the modal vertically */
    left: 50%;        /* Centers the modal horizontally */
    transform: translate(-50%, -50%);  /* Adjusts the positioning */
    width: 80%;       /* Limits the modal width */
    max-width: 500px; /* Sets a maximum width */
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 100000;  /* Keeps the modal above the banner and all other elements */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);  /* Adds a more pronounced shadow for better visibility */
    border-radius: 8px; /* Rounds the corners of the modal */
}

#cookieBanner button,
#cookieSettingsModal button {
    margin-right: 10px;  /* Adds spacing between buttons */
    padding: 10px 15px;  /* Increases the padding for better clickability */
    border: none;        /* Removes borders from buttons */
    background-color: #007bff; /* Sets button background color */
    color: white;        /* Sets button text color */
    border-radius: 5px;  /* Rounds button corners */
    cursor: pointer;     /* Changes cursor to pointer on hover */
}

#cookieBanner button:hover,
#cookieSettingsModal button:hover {
    background-color: #0056b3; /* Darkens button background on hover */
}
