.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    max-width: 800px;
}

.cookie-consent .cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-consent .accept-cookies {
    background: #007bff;
    color: white;
}

.cookie-consent .accept-cookies:hover {
    background: #0056b3;
}

.cookie-consent .decline-cookies {
    background: #6c757d;
    color: white;
}

.cookie-consent .decline-cookies:hover {
    background: #545b62;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
} 