.profile-user-card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.avatar-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.user-name {
  font-size: 17px;
  font-weight: 700;
}

.user-role {
  font-size: 12px;
  color: var(--text-secondary);
}

.office-badge-card {
  background: rgba(17, 24, 39, 0.03);
  border: var(--border-card);
  border-radius: var(--radius-card);
  padding: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.office-info-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  font-weight: 700;
}

.office-info-name {
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

.settings-group {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  border: var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 20px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  cursor: pointer;
}

.settings-row:last-child {
  border-bottom: none;
}

.settings-label {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pwa-install-banner {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-card);
  padding: 18px;
}

.pwa-banner-title {
  font-size: 14px;
  font-weight: 700;
  color: #1E40AF;
  margin-bottom: 4px;
}

.pwa-banner-text {
  font-size: 12px;
  color: #1E3A8A;
  line-height: 1.4;
}
