.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__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

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

.site-consent-banner__btn{
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background:   #2196f3;
  color: #101012;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

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

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

/* מובייל: הטקסט מעל הכפתור */
@media (max-width: 640px){
  .site-consent-banner__inner{ flex-direction: column; align-items: stretch; }
  .site-consent-banner__btn{ width: 100%; }
}

/* למקרה שערכות מסוימות לא מכבדות hidden */
#site-consent-banner[hidden]{ display: none !important; }



.site-consent-banner .site-consent-link {
  color: var(--scb-link-color, #1e73be);
  text-decoration: underline; /* אם תרצי */
}

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


html[lang="en-US"] .site-consent-banner {
    direction: ltr;
   }