/* 导航栏文字显示修复 - 确保所有菜单项完整显示 */

/* 移除所有菜单项的长度限制 */
.navbar-nav .nav-link {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: unset !important;
    white-space: nowrap !important;
}

/* 确保下拉菜单项完整显示 */
.navbar-nav .nav-item.dropdown .nav-link {
    max-width: none !important;
    white-space: nowrap !important;
}

/* 特别保护积分系统菜单项 */
#scoreDropdown {
    max-width: none !important;
    white-space: nowrap !important;
}

/* 保护所有重要菜单项 */
.navbar-nav .nav-item .nav-link {
    min-width: auto !important;
    width: auto !important;
    max-width: none !important;
}

/* 响应式调整 - 在小屏幕上适当调整 */
@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.5rem !important;
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 0.85rem !important;
        padding: 0.6rem 0.8rem !important;
        width: 100% !important;
    }
}
