.dashboard-nav {
    border: none; /* Sin bordes */
    box-shadow: none; /* Sin sombras */
  }
  
.dashboard-category {
    margin-bottom: 15px; /* Reducido margen entre categorías */
  }
  
  .category-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px; /* Margen reducido entre título y botones */
  }
  
  .dashboard-buttons li {
    margin-bottom: 5px; /* Reducido margen entre botones */
  }
  
  .dashboard-buttons li:last-child {
    margin-bottom: 0;
  }
  
  .dashboard-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio entre icono y texto */
    padding: 8px 12px; /* Botón más compacto */
    color: #333;
    font-size: 14px;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .dashboard-buttons .btn:hover {
    background-color: #e9ecef;
  }
  
  .dashboard-buttons .icon {
    font-size: 16px;
    width: 20px; /* Asegura alineación */
    text-align: center;
  }

  .dashboard-buttons .btn.active {
    background-color: #e9ecef; /* Fondo más claro */
    
    font-weight: bold; /* Opcional: Resaltar texto */
    border-left: 4px solid #FEAB00; /* Indicador visual */
  }

  .dashboard-buttons .btn.active i {
    color: #FEAB00; /* Texto destacado */
  }
  
  .dashboard-buttons .btn.active:hover {
    background-color: #d6d8db; /* Color hover para la sección activa */
  }
  

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
  }

  /* NOTIFICACIONES */
  #notificaciones .list-group-item {
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
}

#notificaciones .list-group-item:hover {
    background-color: #e9ecef;
    border-color: #ccc;
    text-decoration: none;
}

/* DASHBOARD: CHANGELOG */
#changelog {
  padding: 10px;
  background-color: #f8f9fa;
  max-height: 600px;
  overflow: auto;
}

.max-height-200 {
  max-height: 200px;
  overflow: auto;
}