.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: #e8f4fd; /* Light blue background from your image */
    color: #2c71b8; /* Blue text color */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.5;
    z-index: 1000;
    transition: opacity 1s ease-out; /* Smooth fade effect */
}
 
.cookie-content {
    position: relative;
    padding-right: 25px;
}
 
.close-btn {
    position: absolute;
    top: -5px;
    right: -10px;
    cursor: pointer;
    font-size: 20px;
    color: #999;
}
 
    .close-btn:hover {
        color: #666;
    }
 
/* Class to trigger the fade out */
.fade-out {
    opacity: 0;
    pointer-events: none;
}
 
 