/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/profile.css 
 * @description: 프로필 이미지 컨테이너 스타일
 * @components: 프로필 이미지 컨테이너
 * @usage: 프로필 이미지 컨테이너 스타일링
 */
.profile-image-container {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 프로필 이미지 자체의 스타일 */
.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지 비율 유지하면서 컨테이너에 맞춤 */
}

.profile-image-container:hover {
  transform: scale(1.05);
}

/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/profile.css
 * @description: 헤더의 인증 아이콘 스타일
 * @components: 인증 아이콘
 * @usage: 인증 아이콘 스타일링
 */
.profile-area .verification-icon {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.profile-area .verification-icon .material-icons-round {
  font-size: 14px;
}

.profile-area .verification-icon.verified {
  color: #2e7d32;
}

.profile-area .verification-icon.unverified {
  color: #e65100;
}
