/* ================================================================
   StudentOS — patches50.css
   1.  Worksheet toolbar — "BETA" badge next to the title.
   2.  Settings Identity — hide the redundant avatar-preview circle
       (name input + Edit Profile button are sufficient).
   ================================================================ */

/* ================================================================
   1.  WORKSHEET BETA BADGE
   ================================================================ */

.p50-beta-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 5px;
    padding: 1px 5px;
    margin-left: 7px;
    vertical-align: middle;
    line-height: 1.6;
    position: relative;
    top: -1px;
}

/* ================================================================
   2.  SETTINGS — HIDE REDUNDANT AVATAR-PREVIEW CIRCLE
       The "Edit Profile" button (patches49) already provides full
       access to avatar editing; the small preview circle is
       unnecessary clutter in the settings panel.
   ================================================================ */

.p43-settings-profile .avatar-preview,
#settings-avatar-preview {
    display: none !important;
}

/* Adjust the flex row so name input fills the space left by the
   removed avatar circle. */
.p43-settings-profile .flex.items-center.gap-4.mb-3 {
    display: block !important;
}

.p43-settings-profile .flex.items-center.gap-4.mb-3 .flex-1 {
    width: 100%;
}
