/* Profile avatar in sidebar nav */
.nav__profile-avatar {
    margin-top: auto !important;
    margin-bottom: 12px !important;
    list-style: none !important;
}

.nav__profile-circle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-radius: 50% !important;
    background: #00D4FF !important;
    color: #fff !important;
    font-family: Inter, -apple-system, sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

.nav__profile-circle:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.35) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Greeting in header */
.header__greeting {
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
    font-family: Inter, -apple-system, sans-serif !important;
    font-size: 14px !important;
    color: #6e6e73 !important;
    white-space: nowrap !important;
    margin-left: 0 !important;
}

.header__greeting strong {
    color: #1d1d1f !important;
    font-weight: 600 !important;
    margin-left: 4px !important;
}

/* ========================================
   PROFILE ICON CENTERING FIX
   Prevents the profile circle from touching the edge of the nav
   ======================================== */

.nav__list-item.nav__profile-avatar {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  padding-left: 4px !important;
}

.nav__profile-circle {
  margin: 0 auto !important;
}