@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

/* --- Barra lateral oculta en móviles --- */
@media (max-width: 768px) {
  #sidebar {
    display: none;
  }
  .bottom-nav {
    display: flex;
  }
}

/* --- Barra inferior oculta en pantallas grandes --- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 50;
}

.bottom-nav a {
  text-align: center;
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

.bottom-nav a:hover {
  color: #000;
  font-weight: 600;
}


