/* Logged-in header profile */
.profile-dropdown-toggle {
  text-decoration: none;
  color: inherit;
  padding: 4px 8px 4px 4px;
  border-radius: 50px;
  transition: background 0.2s ease;
}

.profile-dropdown-toggle:hover {
  background: rgba(25, 97, 100, 0.08);
}

.profile-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1e293b;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.avatar.avatar-initials {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary, #196164), #2d9d9a);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid rgba(248, 177, 2, 0.45);
  box-shadow: 0 4px 12px rgba(25, 97, 100, 0.2);
}

.avatar.avatar-initials.avatar-lg {
  width: 48px;
  height: 48px;
  min-width: 48px;
  font-size: 1.25rem;
}

.dark-mode .profile-name {
  color: #f1f5f9;
}

.dark-mode .profile-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
