/* 1. ATÓMOVÁ ZBRAŇ PRE ZÁKLADNÝ STAV (Zjednotí všetky 3 tlačidlá v lište) */
html:not(#_) .siteCookies__buttonWrap button {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #ffffff !important; /* BIELE POZADIE */
    color: #000000 !important;            /* ČIERNY TEXT */
    border: 1px solid #000000 !important; /* ČIERNY RÁMČEK */
    border-radius: 4px !important;        /* ZAOBLENIE */
    padding: 10px 15px !important;        
    margin: 0 5px 5px 0 !important;       
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;     
    cursor: pointer !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

/* 2. ATÓMOVÁ ZBRAŇ PRE HOVER STAV V LIŠTE (Elegantné prevrátenie farieb) */
html:not(#_) .siteCookies__buttonWrap button:hover {
    background-color: #000000 !important; /* ČIERNE POZADIE PRI HOVERE */
    border-color: #000000 !important;     /* ČIERNY RÁMČEK PRI HOVERE */
    color: #ffffff !important;            /* BIELY TEXT PRI HOVERE */
    text-decoration: none !important;
}

/* 3. ATÓMOVÁ ZBRAŇ PRE VYSKAKOVACIE OKNO NASTAVENÍ (Základný stav) */
html:not(#_) .cookiesSetting__bottom button,
html:not(#_) #cboxContent .cookiesSetting__bottom button.cookiesSetting__button--green {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #ffffff !important; /* BIELE POZADIE */
    color: #000000 !important;            /* ČIERNY TEXT */
    border: 1px solid #000000 !important; /* ČIERNY RÁMČEK */
    border-radius: 4px !important;        
    padding: 10px 15px !important;        
    margin: 0 5px 5px 0 !important;       
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;     
    cursor: pointer !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    
    /* Tieto dva riadky navyše opravia to prvé tlačidlo, ktoré Shoptet robí ako odkaz */
    height: auto !important;
    line-height: normal !important;
}

/* 4. ATÓMOVÁ ZBRAŇ PRE HOVER STAV V OKNE (Prevrátenie farieb) */
html:not(#_) #cboxContent .cookiesSetting__bottom button:hover,
html:not(#_) #cboxContent .cookiesSetting__bottom button.cookiesSetting__button--green:hover {
    background-color: #000000 !important; /* ČIERNE POZADIE PRI HOVERE */
    border-color: #000000 !important;     /* ČIERNY RÁMČEK PRI HOVERE */
    color: #ffffff !important;            /* BIELY TEXT PRI HOVERE */
    text-decoration: none !important;
}