/* 自定义样式 */

/* 用户头像样式 */
#userAvatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    /* 确保头像完全填充圆形容器 */
}

/* 头像内的图片样式 */
#userAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* 优化avatar组件的样式 */
.avatar {
    border-radius: 50%;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 其他自定义样式可以在这里添加 */
.navbar-brand {
    padding: 0px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-brand span {
    margin-left: 10px;
    color: #abaaaa;
    font-size: 15px;
    line-height: 1.2;
    max-width: 200px;
}

/* 容器最大宽度调整 */
.container-xl {
    max-width: 100%;
}