﻿

/*.cookie-consent-modal {
    background-color: white;
    opacity: 1;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 1050;
}
*/


/* Combined Custom CSS for the cookie consent modal */
.cookie-consent-modal {
    position: fixed; /* Keeps the modal at the bottom-left */
    bottom: 10px; /* Margin from the bottom */
    left: 10px; /* Margin from the left */
    width: auto; /* Allows the width to adjust based on content and max/min-width settings */
    max-width: 300px; /* Maximum width */
    min-width: 250px; /* Minimum width, adjust based on your content */
    z-index: 1050; /* Ensures it is above other content */
    background-color: white; /* Background color */
    opacity: 1; /* Full opacity, not transparent */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Subtle shadow for better visibility */
}
