/* Header portal icon/dropdown */
.mfs-header-portal {
    --mfs-header-portal-size: 28px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.mfs-header-portal-link,
.mfs-header-portal-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--mfs-header-portal-size);
    height: var(--mfs-header-portal-size);
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.mfs-header-portal-icon,
.mfs-header-portal-avatar {
    width: var(--mfs-header-portal-size);
    height: var(--mfs-header-portal-size);
    display: block;
}

.mfs-header-portal-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.mfs-header-portal-initials {
    width: var(--mfs-header-portal-size);
    height: var(--mfs-header-portal-size);
    border-radius: 50%;
    background: #007bff;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: calc(var(--mfs-header-portal-size) * 0.5);
    font-weight: 600;
}

.mfs-header-portal-link:hover .mfs-header-portal-icon,
.mfs-header-portal-trigger:hover .mfs-header-portal-avatar,
.mfs-header-portal-trigger:hover .mfs-header-portal-initials {
    opacity: 0.8;
}

.mfs-header-portal-menu {
    position: absolute;
    top: calc(var(--mfs-header-portal-size) + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 10000;
}

.mfs-header-portal-menu[hidden] {
    display: none;
}

.mfs-header-portal-email {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    font-weight: 400;
    color: #666;
    font-size: 13px;
    word-break: break-word;
}

.mfs-header-portal-menu-link,
.mfs-header-portal-logout {
    display: block;
    width: 100%;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.mfs-header-portal-menu-link:hover,
.mfs-header-portal-logout:hover {
    background: #f5f5f5;
}

.mfs-header-portal-logout {
    border-top: 1px solid #eee;
    color: #dc3545;
}
