.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9998;
    display: none;
    pointer-events: none; /* Allows clicks to pass through */
}

.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    height: 120px;
    background-color: #d3d3d3;
    color: #000;
    padding: 15px;
    z-index: 9999;
    display: none;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    border-radius: 12px;
    overflow-y: auto;
    animation: fadeIn 0.5s ease-in-out;
}

.cookie-consent-popup p {
    margin: 0;
    line-height: 1.3;
}

.cookie-consent-popup a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-consent-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cookie-consent-close:hover {
    color: #555;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}