/* Estilos para el banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f000f7;
  color: #790d7c;
  padding: 15px;
  text-align: center;
  display: none;
  z-index: 1000;
}

.cookie-banner .cookie-content {
   margin: 0;
  flex: 1;
  align-items: center;
   padding: 20px;
}

.cookie-banner .cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-banner .btn {
  background-color: #000000;
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 5px;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.cookie-settings-modal .modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 300px;
  text-align: center;
}

.cookie-settings-modal .modal-buttons {
  margin-top: 20px;
}

.cookie-settings-modal .modal-buttons .btn {
  background-color: #cccccc;
}

.cookie-settings-modal label {
  display: block;
  margin: 10px 0;
}
