/* Cookie banner base */
.ck-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #1f2937; /* dark gray */
  color: #fff;
  padding: 12px 16px;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.25);
  font-family: inherit;
  direction: rtl;
}
.ck-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ck-cookie-text a {
  color: #93c5fd;
  text-decoration: underline;
}
.ck-cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ck-accept-btn {
  border: none;
  padding: 10px 14px;
  background: #2563eb; /* blue */
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.ck-accept-btn:hover { opacity: .95; }

/* Consent field tweaks */
.ck-consent-group .ck-consent-text a {
  text-decoration: underline;
}
