/* banner-cookies.css: Estilos para el aviso de cookies */
#banner-cookies {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: rgba(20,20,30,0.98);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  z-index: 2147483646;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 96vw;
  min-width: 220px;
  text-align: center;
}
#banner-cookies button {
  background: #ff3c7e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 18px;
  font-size: 1em;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s;
}
#banner-cookies button:hover {
  background: #e02e6b;
}
#banner-cookies a {
  color: #00ffd0;
  text-decoration: underline;
  margin-left: 6px;
}
@media (max-width: 600px) {
  #banner-cookies {
    flex-direction: column;
    padding: 12px 8px;
    font-size: 0.98em;
    gap: 10px;
  }
  #banner-cookies button {
    width: 100%;
    margin-left: 0;
  }
}
