/* ============================================================================
   PerturbPlan Navbar Styles
   ============================================================================
   Custom navigation links in the dashboard header for external resources.
   ============================================================================ */

/* Navbar container */
.perturbplan-navbar {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 20px;
}

/* Navbar list items */
.perturbplan-navbar li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Navbar links */
.perturbplan-navbar a {
  color: #fff;
  text-decoration: none;
  padding: 15px 15px;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

/* Hover effect for active links */
.perturbplan-navbar a:hover:not(.disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Icons in navbar */
.perturbplan-navbar i {
  margin-right: 5px;
}

/* Disabled/placeholder links (e.g., Documentation) */
.perturbplan-navbar a.disabled {
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 768px) {
  .perturbplan-navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .perturbplan-navbar a {
    padding: 10px 15px;
  }
}
