/* Estilos del banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000; /* Fondo negro */
  color: #fff; /* Texto blanco */
  border-top: 1px solid #333;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 15px; /* separación de 15 píxeles */
  margin-left: 20px;margin-right: 40px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  background-color: #007bff; /* Azul */
  color: white;
  transition: background 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #0056b3; /* Azul más oscuro al pasar el ratón */
}

.cookie-banner.hidden {
  display: none;
}