/* Estilos generales del banner de cookies */
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222;
  color: white;
  padding: 20px 30px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Contenedor de texto (ocupa todo el espacio disponible) */
#left_space {
  flex: 1;
  text-align: left;
  max-width: 65%;
  line-height: 1.5;
}

/* Título en negrita */
#title {
  font-weight: bold;
  font-size: 16px;
}

/* Texto principal más pequeño */
#cookie-text {
  font-size: 15px;
  font-weight: normal;
}

/* Contenedor de botones */
#right_space {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botones */
.button {
  background-color: #54A0FC;
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s;
  font-weight: bold;
}

.button:hover {
  background-color: #000000;
}

/* Estilo para el botón de Política de Privacidad */
.privacy-policy {
  background-color: transparent;
  color: #54A0FC;
  text-decoration: none;
  border: 2px solid #54A0FC;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.privacy-policy:hover {
  background-color: #54A0FC;
  color: #000000;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .cookies {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  #left_space {
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  #right_space {
    width: 100%;
    justify-content: center;
  }
}
