/* === Sidebar buttons === */
.sidebar-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: .6rem .75rem;
  border-radius: 10px;
  color: #71717a;
  font-size: 13.5px;
  transition: all 0.15s ease;
}

.sidebar-btn i {
  color: #a1a1aa;
  transition: color 0.15s ease;
}

.sidebar-btn:hover {
  background: #f4f4f5;
  color: #18181b;
}

.sidebar-btn:hover i {
  color: #18181b;
}

/* Activa — sin fondo negro, solo texto/icono negros + indicador izquierdo */
.sidebar-btn.active {
  background: #f4f4f5;
  color: #18181b;
  font-weight: 600;
  position: relative;
}

.sidebar-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #18181b;
}

.sidebar-btn.active i {
  color: #18181b;
}

/* Scrollbar */
aside {
  scrollbar-width: thin;
  scrollbar-color: #d4d4d8 transparent;
}
aside::-webkit-scrollbar { width: 4px; }
aside::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 10px; }

/* Cerrar sesión */
#btnLogout {
  background: #f4f4f5 !important;
  color: #18181b !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 8px !important;
  box-shadow: none;
  transition: all 0.15s ease;
  font-weight: 400;
}
#btnLogout:hover {
  background: #e4e4e7 !important;
  box-shadow: none;
}

/* padding now handled in CSS since removed from HTML */
.sidebar-btn {
  padding: 0.6rem 0.75rem;
}

#btnLogout {
  padding: 6px 12px;
  border-radius: 8px !important;
}
