.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    animation: slidein 0.5s ease-out;
}

@keyframes slidein {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #4B5563;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.cookie-buttons button:first-child {
    background: #059669;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background: #047857;
}

.cookie-buttons button:last-child {
    background: #F3F4F6;
    color: #374151;
}

.cookie-buttons button:last-child:hover {
    background: #E5E7EB;
} 