.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 20px 40px; /* Increased padding for better spacing */
    border-radius: 10px;
    font-size: 1.1em; /* Slightly larger text for readability */
    width: 90%; /* Responsive width */
    max-width: 1200px; /* Prevents the box from getting too wide */
    text-align: center;
    display: none;
    z-index: 9999;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Adds subtle shadow for better visibility */
}

.cookie-notice p {
    display: inline;
    margin-right: 15px;
    font-size: 1.1em; /* Ensures text is readable */
}

.cookie-notice a {
    color: #fff; /* Default color */
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}

.cookie-notice a:hover {
    color: #33ff00; /* Bright green on hover */
}

/* Button Styling */
.cookie-notice button {
    background: #33ff00;
    color: #222;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cookie-notice button:hover {
    background: #28cc00; /* Darker green for hover effect */
    color: white;
}



