.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bubble-white);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-consent-text {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .cookie-consent-text {
        margin: 0;
        padding-right: 20px;
    }
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}
