/* タブ */

.follow-list__tabs {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 1rem;
}

.follow-list__tab {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0;
    background: #f4f4f4;
    border: 1px solid #ccc;
    cursor: pointer;
    user-select: none;
}

.follow-list__tab--active {
    background: #fff;
    border-bottom: 2px solid #fff;
    font-weight: bold;
}


/* ユーザーリスト */

.follow-list__users {
    display: none;
}

.follow-list__users--active {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.follow-list__user {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
}

.follow-list__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.follow-list__info {
    flex: 1;
}

.follow-list__display-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.follow-list__username {
    color: #777;
    margin-bottom: 0.5rem;
}

.follow-list__status {
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.follow-list__bio {
    color: #333;
    margin-bottom: 0.5rem;
}


/* ボタン */

.follow-list__follow-button,
.follow-list__more-button {
    background: #333;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border: none;
    cursor: pointer;
    margin-right: 0.5rem;
}

.follow-list__follow-button:hover,
.follow-list__more-button:hover {
    background: #555;
}

.follow-list__more-button {
    background: #ccc;
    color: #333;
}

.follow-list__more-button:hover {
    background: #ddd;
}

.follow-list__tab:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}

.follow-list__users[hidden] {
    display: none !important;
}
