/* 文件名: message_check.css */
/* 作用: 顶部导航栏消息图标与红点徽章样式 */

/* 消息图标外层容器 */
.nav-msg-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0 15px;
    vertical-align: middle;
}

/* 消息图标样式 */
.nav-msg-icon {
    font-size: 15px;
    color: #ffffff; /* 确保在深色导航栏中可见 */
    text-decoration: none;
}

/* 红点徽章样式（B站同款数字红点） */
.nav-msg-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #ff4d4f; /* 醒目的红色 */
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    display: none; /* 默认隐藏，只有当数量 > 0 时通过 JS 显示 */
}