/* ===== SHARED STYLES ===== */
/**
 * @file: shared/follow.css
 * @description: 팔로우 버튼 스타일
 * @components: 팔로우 버튼
 * @usage: 팔로우 버튼 스타일링
 */
.follow-button {
  padding: 4px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px 8px 0 0;
  background-color: #f8f9fa;
  color: #666;
  font-size: 0.8em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* 팔로우 버튼 호버 효과 */
.follow-button:hover {
  color: #f8f9fa;
  background-color: #ff6b6b;
}

/* 팔로잉 상태의 버튼 스타일 */
.follow-button.following {
  background-color: #dc3545;
  color: white;
  border-color: #dc3545;
}

/* 팔로잉 상태의 버튼 호버 효과 */
.follow-button.following:hover {
  background-color: #ff6b6b;
  border-color: #ff6b6b;
}
