/* Estilos básicos globais */
body {
  margin: 0;
  background-color: #050509;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.4);
  border-radius: 999px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}

/* LINKS DO MENU LATERAL */
.sidebar-link,
.sidebar-link-active {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
}

/* Link normal */
.sidebar-link {
  color: #cbd5f5; /* slate-300 */
  background-color: transparent;
}

.sidebar-link:hover {
  background-color: rgba(148, 163, 184, 0.08); /* hover */
  border-color: rgba(148, 163, 184, 0.25);
}

/* Link da página ativa */
.sidebar-link-active {
  color: #fef3c7; /* quase branco com leve amarelo */
  background-color: rgba(249, 115, 22, 0.15); /* laranja bem leve */
  border-color: rgba(249, 115, 22, 0.7);      /* borda laranja */
}
