/* cookie-consent.css */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 15px;
    border-top: 1px solid #ddd;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-consent-container p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
    }
    .cookie-buttons button {
        flex: 1;
    }
}