.cookie-banner {
  position: fixed;
  top: 20px;
  right: -500px;
  background: white;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: right 0.5s ease;
  font-family: sans-serif;
}

.cookie-banner.show {
  right: 20px;
}

.cookie-banner h2 {
  margin-top: 0;
  font-size: 20px;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  flex: 1;
}

#cookie-accept {
  background-color: #28a745;
  color: white;
}

#cookie-refuse {
  background-color: #dc3545;
  color: white;
}

#cookie-settings {
  background-color: #007bff;
  color: white;
}

.cookie-preferences {
  margin-top: 15px;
}

.cookie-preferences label {
  display: block;
  margin: 8px 0;
}

.cookie-preferences a {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
}

.hidden {
  display: none;
}
