/* Estilos generales del banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  display: none; /* Se muestra solo si no se han aceptado las cookies */
}

/* Estilo para el texto del mensaje */
.cookie-banner p {
  margin: 0;
  flex-grow: 1;
  padding-right: 20px;
}

/* Estilo para el enlace */
.cookie-banner a {
  color: #b81466;
  text-decoration: none;
  margin-left: 10px;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

/* Estilo para el botón */
.cookie-banner button {
  background-color: #b81466;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cookie-banner button:hover {
  background-color: #d34cbf;
}

/* Responsividad */
@media (max-width: 768px) {
  .cookie-banner p {
    font-size: 12px;
  }

  .cookie-banner button {
    padding: 8px 16px;
  }
}
