#site-consent-banner.site-consent-banner{
  position: fixed;
  inset-inline: 0;     /* right:0; left:0 תומך RTL/LTR */
  bottom: 0;
  z-index: 9999;
  background: #101012cc; /* מעט שקיפות */
  color: #fff;
  font: 400 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", sans-serif;
  box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  backdrop-filter: saturate(120%) blur(6px);
}

#site-consent-banner .site-consent-banner__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

#site-consent-banner .site-consent-banner__text{ margin: 0; }

#site-consent-banner .site-consent-banner__btn{
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--scb-btn-bg, #2196f3);
  color: var(--scb-btn-color, #101012);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}

#site-consent-banner .site-consent-banner__btn:hover,
#site-consent-banner .site-consent-banner__btn:focus {
  background: var(--scb-btn-bg-hover, #0a84e1);
  color: var(--scb-btn-color-hover, #ffffff);
}

#site-consent-banner .site-consent-banner__btn:focus{
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* קישורים בטקסט */
/* #site-consent-banner .site-consent-banner__text a{
  text-decoration: underline;
  color:#2196f3;
} */

@media (max-width: 640px){
  #site-consent-banner .site-consent-banner__inner{ flex-direction: column; align-items: stretch; }
  #site-consent-banner .site-consent-banner__btn{ width: 100%; }
}

#site-consent-banner[hidden]{ display: none !important; }



#site-consent-banner.site-consent-banner .site-consent-banner__text a {
  color: var(--scb-link-color, #1e73be);
  text-decoration: underline; 
}

#site-consent-banner.site-consent-banner .site-consent-banner__text a:hover,
#site-consent-banner.site-consent-banner .site-consent-banner__text a:focus {
  color: var(--scb-link-hover-color, #0a5ea8);
}




#site-consent-banner .site-consent-banner[dir="rtl"] { direction: rtl; }
#site-consent-banner .site-consent-banner[dir="ltr"] { direction: ltr; }