#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background-color: #000;
  color: #fff;
  font-family: sans-serif, Verdana;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.97;
  z-index: 9999;
}

.cookie-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-bar-buttons {
  display: flex;
  gap: 10px;
}

.cookie-bar-buttons button {
  min-height: 48px;
  padding: 10px 18px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

.cookie-bar-content p {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

#accept-cookie {
  background-color: #066c0a;
  color: #fff;
}

#reject-cookie {
  background-color: #9f1b12;
  color: #fff;
}

.privacy-link {
  color: #6495ed;
  text-decoration: none;
}

.show-if-cookie-accepted {
  display: none;
}

.show-if-not-accepted,
.show-if-cookie-not-accepted {
  display: block;
}

@media screen and (max-width: 600px) {
  .cookie-bar-content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .cookie-bar-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-bar-buttons button {
    flex: 1;
  }

  .cookie-bar-content p {
    font-size: 13px;
    line-height: 1.45;
  }
}
