#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 200;
  font-family: inherit;
  display: none;
}

#cookie-banner p {
  margin: 0;
  font-size: 14px;
  max-width: 600px;
  line-height: 1.5;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.2s;
}

#accept-btn {
  background-color: #ffffff;
  color: #1a1a1a;
}

#decline-btn {
  background-color: transparent;
  color: #cccccc;
  border: 1px solid #555;
}

.cookie-btn:hover { opacity: 0.8; }

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
