/* 防止整体 navbar 内容换行过早 */
.navbar-nav {
	flex-wrap: nowrap !important;
	/* 强制同一行，必要时会出现横向滚动 */
	white-space: nowrap;
	/* 防止文字内部换行 */
}

/* 组容器：本身不占多余空间 */
.group-wrapper {
	display: inline-block;
	margin: 4px 2px !important;
	padding: 0;
}

/* 真正画边框的容器 */
.group-border {
	display: inline-flex;
	/* 让里面的 a 水平排列 */
	align-items: center;
	/* border: 2px solid rgb(66, 205, 240);                */
	border: 2px solid rgb(249, 245, 4);
	/* 白色边框 */
	background: transparent;
	/* 透明背景 */
	border-radius: 6px;
	/* 轻微圆角，可去掉 */
	padding: 4px 6px;
	/* 边框与文字的内间距，左右大一点好看 */
}

.group-border2 {
	display: inline-flex;
	align-items: center;
	border: 2px solid transparent;
	background: transparent;
	border-radius: 6px;
	padding: 4px 6px;
}

/* 里面的链接样式调整：去掉多余外边距，继承颜色 */
.group-border a {
	color: white;
	/* font-size: 1.1rem !important; */
	padding: 8px 12px !important;
	margin: 0 !important;
	background: none !important;
	border: none !important;
}

.group-border2 a {
	color: white;
	padding: 8px 12px !important;
	margin: 0 !important;
	background: none !important;
	border: none !important;
}

/* 如果 bootstrap 的 .nav-link 有干扰，可强制覆盖 */
.group-border a.nav-link {
	color: inherit !important;
}