/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/follow-list.css
 * @description: 팔로우 목록 모달 스타일
 * @components: 팔로우 목록 모달
 * @usage: 팔로우 목록 모달 스타일링
 */
.follow-list {
  max-width: 500px;
  width: 90%;
}

.follow-list h2 {
  margin-bottom: 24px;
  color: #1a73e8;
  text-align: center;
}

.follow-list-container {
  max-height: 60vh;
  overflow-y: auto;
}

.follow-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.follow-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background-color: #f8fafe;
  border-radius: 8px;
  border: 1px solid #e1ebfa;
  transition: all 0.3s ease;
}

.follow-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.1);
}

.follow-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.follow-location .material-icons-round {
  color: #1a73e8;
  font-size: 20px;
}

.unfollow-btn {
  padding: 6px 12px;
  border: 1px solid #dc3545;
  border-radius: 16px;
  background-color: white;
  color: #dc3545;
  cursor: pointer;
  font-size: 0.85em;
  transition: all 0.2s ease;
}

.unfollow-btn:hover {
  background-color: #dc3545;
  color: white;
}

.no-follows {
  text-align: center;
  color: #666;
  padding: 40px;
}
