/* ===================================== */
/* BlueDot Cookie Consent Banner (CSS)   */
/* ===================================== */

#bdot-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #f2f3f5; /* light gray */
    color: #222;
    padding: 16px 18px;
    display: none; /* shown by JS */
    border-top: 1px solid #dcdcdc;
}

    #bdot-cookie-banner .bdot-cookie-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    #bdot-cookie-banner .bdot-cookie-text {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
        color: #222;
    }

    #bdot-cookie-banner .bdot-cookie-actions {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

        #bdot-cookie-banner .bdot-cookie-actions button {
            border-radius: 6px;
            padding: 10px 16px;
            font-size: 14px;
            cursor: pointer;
            line-height: 1;
        }

#bdot-cookie-accept {
    background: #2d8cff;
    color: #ffffff;
    border: none;
}

#bdot-cookie-reject {
    background: #ffffff;
    color: #333;
    border: 1px solid #bfc3c7;
}

#bdot-cookie-banner a {
    color: #2d8cff;
    text-decoration: underline;
}
