#cookie-consent-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  z-index: 9999;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

#cookie-consent-bar.show {
  display: block;
}

.cookie-consent-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#cookie-consent-bar p {
  margin: 0;
  padding: 0;
  color: #333;
}

#cookie-consent-bar a {
  color: #0073aa;
  text-decoration: underline;
}

#cookie-consent-bar-ok {
  flex-shrink: 0;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  background-color: #0073aa;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

#cookie-consent-bar-ok:hover {
  background-color: #005f8d;
}

/* Mobile layout */
@media (max-width: 768px) {
  .cookie-consent-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-consent-bar-ok {
    align-self: flex-end;
  }
}

#cookie-consent-bar {
  background-color: #fff;
  color: #333;
}

#cookie-consent-bar-ok {
  background-color: #0073aa;
  color: #fff;
}

.color-input {
    padding-left: 30px; /* space for swatch */
    display: inline-block;
    vertical-align: middle;
}

.color-swatch {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 5px; /* distance from the left of the cell */
    transform: translateY(-50%);
    border: 1px solid #ccc;
    border-radius: 3px;
    pointer-events: none;
}

