#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: #fff;
  padding: 16px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-size: 14px;
  font-family: Arial, sans-serif;
  display: none;
}

#cookie-banner p {
  margin: 0 0 12px 0;
  line-height: 1.5;
}

#cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

#cookie-banner button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

#cookie-reject {
  background: #666;
  color: #fff;
}

#cookie-reject:hover {
  background: #555;
}

#cookie-accept {
  background: #8a6a4a;
  color: #fff;
}

#cookie-accept:hover {
  background: #6d5538;
}

@media (max-width: 600px) {
  #cookie-banner {
    padding: 12px 16px;
  }

  #cookie-banner p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  #cookie-banner .cookie-buttons {
    flex-direction: column;
  }

  #cookie-banner button {
    width: 100%;
  }
}
