/* 顶栏用户账号下拉菜单 + 改密弹窗 */
.top-header-user-menu {
    position: relative;
    margin-left: 4px;
}
.top-header-user-menu__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: inherit;
}
.top-header-user-menu__trigger:hover .top-header-user-capsule {
    background: rgba(32, 74, 60, 0.09);
}
.top-header-user-menu__caret {
    font-size: 10px;
    color: #6b7280;
    transition: transform 0.2s ease;
}
.top-header-user-menu.is-open .top-header-user-menu__caret {
    transform: rotate(180deg);
}
.top-header-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    padding: 6px 0;
    z-index: 1100;
}
.top-header-user-menu__head {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px 8px;
    border-bottom: 1px solid #f3f4f6;
}
.top-header-user-menu__name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.top-header-user-menu__role {
    font-size: 12px;
    color: #6b7280;
}
.top-header-user-menu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
}
.top-header-user-menu__item i {
    width: 14px;
    color: #6b7280;
    text-align: center;
}
.top-header-user-menu__item:hover {
    background: #f9fafb;
    color: #111827;
}
.top-header-user-menu__item--danger {
    color: #dc2626;
    border-top: 1px solid #f3f4f6;
    margin-top: 4px;
    padding-top: 12px;
}
.top-header-user-menu__item--danger i {
    color: #dc2626;
}
.top-header-user-menu__item--danger:hover {
    background: #fef2f2;
    color: #b91c1c;
}
.user-change-password-hint {
    margin: 0 0 16px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}
.user-change-password-form .standard-form-row {
    margin-bottom: 14px;
}
.user-change-password-error {
    margin: 8px 0 0;
    font-size: 13px;
    color: #dc2626;
    line-height: 1.5;
}
