#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}
#cookie-banner label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}
#cookie-banner .description {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 10px;
}
#cookie-banner button {
  padding: 8px 16px;
  margin-top: 15px;
  margin-right: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#save-btn {
  background-color: #2196F3;
  color: white;
}
#accept-all-btn {
  background-color: #4CAF50;
  color: white;
}
#manage-cookie-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #555;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 999;
  font-size: 14px;
}