/* === SIDEBAR HORIZONTAL LUXLINK FUSION === */

.sidebar {
  width: 100%;
  background: #ffffff;
  padding: 10px 0;
  margin-top: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* UL en línea */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;      /* al centro como antes */
  gap: 15px;                    /* separación elegante */
}

/* Sin márgenes extra */
.sidebar li {
  margin: 0;
}

/* Estilo de botones horizontales */
.sidebar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: none;
  color: #0d47a1;
  border-radius: 8px;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

/* Hover elegante */
.sidebar a:hover {
  background: rgba(13, 71, 161, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.18);
}

/* Íconos */
.sidebar a i {
  width: 18px;
  height: 18px;
}
