#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 999999;
    animation: slideIn 0.4s ease-out;
}

#cookie-consent-banner.cookie-consent-hidden {
    display: none;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-accept {
    background: #6B9F3C;
    color: white;
}

.cookie-btn-accept:hover {
    background: #5a8732;
}

.cookie-btn-decline {
    background: #ED0A34;
    color: white;
}

.cookie-btn-decline:hover {
    background: rgb(162, 20, 10);
}

.cookie-btn-details {
    background: #bfc3c7;
    color: #fff;
}

.cookie-btn-details:hover {
    background: #8b8f92;
}

@media (max-width: 480px) {
    #cookie-consent-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
    }
}