#cnb-cookie-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
}

#cnb-cookie-bar p {
    margin: 0;
    padding-right: 10px;
}

#cnb-close-btn {
    background-color: #555;
    color: #fff;
    padding: 5px 15px;
    border: none;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    #cnb-cookie-bar {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 15px;
    }

    #cnb-cookie-bar p {
        padding-right: 0;
        margin-bottom: 10px;
    }
}
