/* Follow System UI Styles */
/* Following the locked design system: 60-30-10 color rule */

/* Follow Button - Not Following State */
.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid #E11D48;
    background: #FFFFFF;
    color: #E11D48;
    text-decoration: none;
    cursor: pointer;
}

.follow-btn:hover {
    background: #E11D48;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.2);
}

.follow-btn:active {
    transform: translateY(0);
}

/* Follow Button - Following State */
.follow-btn.following {
    background: #E11D48;
    color: #FFFFFF;
    border-color: #E11D48;
}

.follow-btn.following:hover {
    background: #C11A3F;
    border-color: #C11A3F;
}

.follow-btn.following::after {
    content: " ✓";
    margin-left: 0.25rem;
}

/* Follow Button - Disabled/Not Logged In */
.follow-btn:disabled,
.follow-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Follower Count (Muted Text) */
.follower-count {
    font-size: 0.875rem;
    color: #64748B;
    margin-left: 1rem;
}

/* Follow Button Container */
.follow-button-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Loading State */
.follow-btn.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.follow-btn.loading::before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}















