/* Cookie Consent Banner Styling matching dietitian brand */

.cookie-banner-c9679490 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222222; /* Dark professional footer-style background */
    color: #FEFFFF; /* Light contrast text */
    padding: 16px 24px;
    z-index: 999999;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    border-top: 4px solid #8B61C2; /* Primary purple brand identity accent bar */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner-c9679490.hide-c9679490 {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

body.admin-bar .cookie-banner-c9679490 {
    /* Safe spacing to not interfere with any bottom admin tools if necessary */
}

.cookie-banner-container-c9679490 {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text-c9679490 {
    font-size: 14px;
    line-height: 1.5;
    color: #FEFFFF;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text-c9679490 a {
    color: #AC8EED; /* Accent purple */
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-banner-text-c9679490 a:hover {
    color: #8B61C2;
}

.cookie-btns-c9679490 {
    display: flex;
    gap: 12px;
}

/* Button UI styling using brand system */
.cookie-btn-c9679490 {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.cookie-btn-primary-c9679490 {
    background-color: #8B61C2; /* Brand Primary Purple */
    color: #FEFFFF;
}

.cookie-btn-primary-c9679490:hover {
    background-color: #734fa3;
}

.cookie-btn-secondary-c9679490 {
    background-color: #54595F; /* Dark secondary grey */
    color: #FEFFFF;
}

.cookie-btn-secondary-c9679490:hover {
    background-color: #44484D;
}

@media screen and (max-width: 768px) {
    .cookie-banner-container-c9679490 {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .cookie-btns-c9679490 {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn-c9679490 {
        flex: 1;
        max-width: 150px;
    }
}
