#cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #333;
  padding: 20px;
  border: 1px solid #ddd;
  width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 12px;
  display: none;
}

#cookie-banner p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

#cookie-banner button {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#cookie-accept {
  background-color: #2e7d32;
  color: white;
}

#cookie-accept:hover {
  background-color: #1b5e20;
}

#cookie-decline {
  background-color: #e0e0e0;
  color: #333;
}

#cookie-decline:hover {
  background-color: #bdbdbd;
}
