/* CPort welcome badge - minimal styling, tweak as needed */
.cport-welcome-badge {
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    max-width: 420px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.cport-welcome-header { display:flex; gap:12px; align-items:center; }

.cport-avatar {
    width:48px;
    height:48px;
    line-height:48px;
    border-radius:50%;
    background:#2b6cb0;
    color:#fff;
    text-align:center;
    font-weight:700;
    font-size:18px;
}

.cport-welcome-text { font-size:14px; color:#222; }

.cport-welcome-line { margin:0 0 4px 0; }

.cport-role-line { margin:0; font-size:13px; color:#666; }

.cport-last-login { margin-top:6px; font-size:12px; color:#888; }

/* Role color variants (example) */
.role-administrator .cport-role-line { color: #0073aa; }
.role-subscriber .cport-role-line { color: #555; }

/* Make sure it looks OK in admin area */
body.wp-admin .cport-welcome-badge { max-width: 100%; margin-bottom: 12px; }
