#cmcb-cookie-banner {
    display: none; 
    position:fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #c8ac87;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
    word-break: break-word;
    word-wrap: break-word;
    z-index: 2147483631;
}

.cmcb-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Lub right: 20px, zależnie od preferencji */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.cmcb-floating-btn:hover {
    transform: scale(1.1);
}

/* Ukrywamy przycisk, gdy banner jest otwarty, żeby się nie nakładały */
body.cmcb-banner-open .cmcb-floating-btn {
    display: none;
}

.cmcb-cookie-banner-container{
    position: relative;
}

.cmcb-buttons{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

#cmcb-close{position: absolute;right: 15px;}

.cmcb-hidden-id {
    display: none !important;
}

.cmcb-content .cmcb-buttons button.cmcb-btn{
font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 3px;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cmcb-content #cmcb-accept {background:#177460;color: #f1f1f1;}
.cmcb-content #cmcb-decline{background: transparent; color:#333;border-radius: 25px; border: 1px solid}
.cmcb-content p{font-size:14px}


#cmcb-consent-info {
    font-size: 11px;
    line-height: 1.4;
    color: #777;
    text-align: left;
}

#cmcb-consent-info code {
    display: block;
    background: #f9f9f9;
    padding: 3px 6px;
    border: 1px solid #ececec;
    border-radius: 3px;
    word-break: break-all;
    margin-top: 4px;
    font-family: monospace;
    color: #333;
}


@media(min-width:692px){

    #cmcb-cookie-banner {
          max-width:40vw;
        width:400px;
    }

.cmcb-buttons{
    flex-direction:row;
    justify-content: center;

}
}