.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    max-width: 400px;
    width: 90%;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner .buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-banner button {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-banner .accept-btn {
    background-color: #4CAF50;
    color: white;
    min-width: 100px;
}

.cookie-banner .accept-btn:hover {
    background-color: #45a049;
}

.cookie-banner .decline-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    min-width: 100px;
}

.cookie-banner .decline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-content[style*="display: none"] {
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
} 