/* Profile Image Styles */
.profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.profile-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.profile-avatar-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.profile-avatar-xl {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.profile-placeholder {
  background: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.profile-placeholder-sm {
  font-size: 0.75rem;
}

.profile-placeholder-lg {
  font-size: 1rem;
}

.profile-placeholder-xl {
  font-size: 1.25rem;
}

.profile-status-indicator {
  position: relative;
}

.profile-status-indicator::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.profile-status-indicator.status-qualified::after {
  background-color: var(--success);
}

.profile-status-indicator.status-interested::after {
  background-color: var(--info);
}

.profile-status-indicator.status-contacted::after {
  background-color: var(--warning);
}

.profile-status-indicator.status-prospect::after {
  background-color: var(--medium-gray);
}

.profile-status-indicator.status-disqualified::after {
  background-color: var(--error);
}

/* Profile card styles */
.profile-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-card-info {
  flex-grow: 1;
}

.profile-card-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.profile-card-details {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}
