/**
 * Navigation Layout Fix
 * Ensures proper alignment with wallet actions container
 */

/* Ensure navigation maintains proper layout */
.navigation-wrap-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Menu should not push wallet actions */
.menu-2 {
  flex: 1;
  max-width: calc(100% - 300px); /* Leave space for wallet actions */
}

/* Ensure wallet actions stay on far right */
.wallet-actions-container {
  flex-shrink: 0;
  margin-left: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .menu-2 {
    max-width: calc(100% - 200px);
  }
}