/**
 * 临沂极优网络科技有限公司
 * 网址：www.jiyousoft.cn
 * 
 * 角色标签样式
 * 创建时间：2026-04-14
 */

.role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    line-height: 1.4;
}

.role-badge.admin {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

.role-badge.svip {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: #fff;
    box-shadow: 0 2px 4px rgba(155, 89, 182, 0.3);
}

.role-badge.vip {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    box-shadow: 0 2px 4px rgba(243, 156, 18, 0.3);
}

.role-badge.normal {
    background: #95a5a6;
    color: #fff;
}

/* 下拉菜单 */
.user-menu {
    position: relative;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #2c3e50;
    padding: 6px 0;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3498db;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.user-menu:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f5f7fa;
}

.menu-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: #e1e8ed;
    margin: 8px 0;
}

/* 角色提示卡片 */
.role-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.role-notice.admin {
    background: linear-gradient(135deg, #fdecea, #fadbd8);
    border-left: 4px solid #e74c3c;
}

.role-notice.svip {
    background: linear-gradient(135deg, #f4ecf7, #e8daef);
    border-left: 4px solid #9b59b6;
}

.role-notice.vip {
    background: linear-gradient(135deg, #fef9e7, #fdf2e9);
    border-left: 4px solid #f39c12;
}

.notice-icon {
    font-size: 28px;
}

.notice-content strong {
    display: block;
    margin-bottom: 4px;
    color: #2c3e50;
    font-size: 15px;
}

.notice-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 13px;
}