/* Custom fix for navbar dropdown items not wrapping */
.dropdown-menu .dropdown-item {
  white-space: nowrap !important;
  word-break: normal !important;
  width: auto !important;
  max-width: 500px !important;
  min-width: 220px !important;
  overflow: visible;
  text-overflow: unset;
}

/* Make dropdown menu itself wider for Tech Bits and similar sections */
.navbar-custom .nav-item.dropdown .dropdown-menu {
  min-width: 320px !important;
  max-width: 520px !important;
}
