/* Follow Button Container */
.follow-button-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Follow Button Base Styles */
.follow-button {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}


.follow-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.follow-icon {
  width: 20px;
  height: 20px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

/* Followed State (Filled Heart) */
.follow-button.followed .follow-icon {
  color: var(--leaf);
  stroke: var(--leaf);
}


/* Unfollowed State (Outline Heart) */
.follow-button.unfollowed .follow-icon {
  color: var(--ink-faint);
  stroke: var(--ink-faint);
  fill: none;
}

.follow-button.unfollowed:hover .follow-icon {
  color: var(--ink-soft);
  stroke: var(--ink-soft);
}

/* Follow Count Badge */
.follow-count {
  position: absolute;
  top: -4px;
  right: -12px;
  background-color: var(--leaf);
  color: var(--on-leaf);
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 1px 3px var(--shadow-light);
  pointer-events: none;
}
