/* General Styling */
body {
  font-family: Arial, sans-serif;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #444;
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Modal Styling */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  width: 80%;
  max-width: 400px;
  padding: 20px;
  display: none;
}

.modal.hidden {
  display: none;
}

.modal-content {
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body .preference {
  margin: 10px 0;
}

.modal-footer {
  text-align: right;
}

#cookie-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 30px;
  cursor: pointer;
  z-index: 1500;
}

/* Additional Styling Rules */
.hidden {
  visibility: hidden;
}