/* ═══════════════════════════════════════════
   DROPVAULT — USER PILL STYLES
   Shared across every page
═══════════════════════════════════════════ */

/* ── USER PILL ── */
.dv-user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 0.5px solid #e5e5e5;
  border-radius: 99px;
  padding: 4px 12px 4px 4px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.dv-user-pill:hover {
  border-color: #E8740C;
  box-shadow: 0 0 0 3px rgba(232,116,12,0.08);
}
.dv-user-pill:hover .dv-chevron { color: #E8740C; }

/* ── AVATAR CIRCLE ── */
.dv-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* Initials (placeholder until photo is set) */
.dv-initials {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1;
  pointer-events: none;
}

/* Profile photo — shown automatically when user.avatar is set */
.dv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

/* ── NAME ── */
.dv-fullname {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

/* ── CHEVRON ── */
.dv-chevron {
  font-size: 13px;
  color: #bbb;
  flex-shrink: 0;
  transition: color 0.15s;
}

/* ── ADMIN NAV BUTTON ── */
.dv-admin-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(232,116,12,.1);
  border: 1px solid rgba(232,116,12,.2);
  color: #E8740C !important;
  font-size: 17px; text-decoration: none;
  transition: all .2s;
}
.dv-admin-btn:hover {
  background: #E8740C;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,116,12,.3);
}
.dv-admin-btn i { font-size: 17px; }