/* Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(206, 114, 44) !important;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001 !important;
  font-size: 14px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

#accept-all {
  background-color: #fff;
  color: #F96E04FF;
}

#customize-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* Modal Styles */
.cookie-modal {
  position: fixed;
  z-index: 1001 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);

  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cookie-modal-content {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  color: #333;
}

.cookie-modal-content h2 {
  margin-top: 0;
  color: #F96E04FF;
}

.cookie-modal-content label {
  display: block;
  margin: 10px 0;
  font-size: 15px;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-buttons button {
  padding: 8px 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

#save-preferences {
  background-color: #F96E04FF;
  color: #fff;
  border: none;
}

#close-modal {
  background-color: #ccc;
  border: none;
}


.cookie-footer-button {
  background-color: #F96E04FF;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.cookie-footer-button:hover {
  background-color: #e26102;
}