/* フォローボタンのスタイル */
.follow-btn-container {
    position: relative;
    z-index: 10;
}

.follow-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.follow-btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.follow-btn.following {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: #fff;
}

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

.follow-btn .material-icons {
    font-size: 18px;
}

.follow-btn .follow-text {
    font-weight: 500;
}

/* プレイヤーリスト用のフォローボタン */
.player_list_profile .follow-btn-container {
    text-align: center;
    margin-top: 10px;
}

.player_list_profile .follow-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
}

.player_list_profile .follow-btn .material-icons {
    font-size: 16px;
}

/* プレイヤー詳細用のフォローボタン */
.local_player_one .follow-btn {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 25px;
}

.local_player_one .follow-btn .material-icons {
    font-size: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .follow-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .follow-btn .material-icons {
        font-size: 16px;
    }
    
    .local_player_one .follow-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .local_player_one .follow-btn .material-icons {
        font-size: 18px;
    }
}

/* モーダルスタイル */
.window_modal_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.window_modal {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
}

#modal_close_btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #999;
}

#modal_close_btn:hover {
    color: #333;
}

#modal_close_btn::before {
    content: '×';
}

.follow-modal-message {
    font-size: 16px;
    color: #333;
    margin: 0;
}